Browse Source

Merge pull request #40 from lexintegritastech/improve-main-ui

Major changes of Doctrines
pull/42/head
Angel Aviel Domaoan 4 years ago committed by GitHub
parent
commit
d79f783687
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      app/components/doctrine_index_table_component.rb
  2. 8
      app/components/doctrine_index_table_component/doctrine_index_table_component.html.erb
  3. 5
      app/components/doctrine_modal_form_component/doctrine_modal_form_component.html.erb
  4. 12
      app/components/document_doctrine_index_component.rb
  5. 2
      app/components/document_doctrine_index_component/document_doctrine_index_component.html.erb
  6. 20
      app/components/document_doctrine_show_component.rb
  7. 21
      app/components/document_doctrine_show_component/document_doctrine_show_component.html.erb
  8. 7
      app/components/subject_index_form_component/subject_index_form_component.html.erb
  9. 5
      app/controllers/api/doctrines_controller.rb
  10. 5
      app/controllers/api/documents_controller.rb
  11. 28
      app/controllers/concerns/document_search.rb
  12. 6
      app/controllers/doctrines_controller.rb
  13. 7
      app/javascript/controllers/annotations_controller.js
  14. 45
      app/javascript/controllers/doctrines_controller.js
  15. 157
      app/javascript/controllers/document_controller.js
  16. 19
      app/javascript/controllers/selectize_controller.js
  17. 2
      app/javascript/src/application.scss
  18. 30
      app/models/cdao/subject.rb
  19. 7
      app/models/doctrine.rb
  20. 8
      app/reflexes/annotation_reflex.rb
  21. 14
      app/reflexes/document_reflex.rb
  22. 10
      app/reflexes/subjects_reflex.rb
  23. 1
      app/views/api/doctrines/create.json.jbuilder
  24. 1
      app/views/api/doctrines/destroy.json.jbuilder
  25. 2
      app/views/api/doctrines/index.json.jbuilder
  26. 2
      app/views/api/doctrines/show.json.jbuilder
  27. 1
      app/views/api/doctrines/update.json.jbuilder
  28. 8
      app/views/api/documents/index.json.jbuilder
  29. 1
      app/views/doctrines/search.html.erb
  30. 26
      app/views/doctrines/show.html.erb
  31. 24
      app/views/document/doctrines/_document_search_results_table.html.erb
  32. 2
      app/views/document/doctrines/show.html.erb
  33. 2
      app/views/documents/show.html.erb
  34. 2
      app/views/layouts/application.html.erb
  35. 1
      app/views/shared/_pagination.html.erb
  36. 4
      config/routes.rb
  37. 226
      data/csvs/civil.csv
  38. 84
      data/csvs/commercial.csv
  39. 553
      data/csvs/criminal.csv
  40. 37
      data/csvs/labor.csv
  41. 120
      data/csvs/legal.csv
  42. 117
      data/csvs/political.csv
  43. 876
      data/csvs/remedial.csv
  44. 26
      data/csvs/taxation.csv
  45. 6
      db/migrate/20220215025319_remove_document_type_and_document_id_in_doctrines.rb
  46. 5
      db/migrate/20220216084942_add_headnote_in_doctrines.rb
  47. 10
      db/seeds.rb

6
app/components/doctrine_index_table_component.rb

@ -6,6 +6,12 @@ class DoctrineIndexTableComponent < BaseComponent
@opts = opts
end
def jurisprudence(search_result)
return "(No Assigned Document)" if search_result.doctrine_jurisprudences.blank?
search_result.doctrine_jurisprudences.first.jurisprudence
end
def document_reference_number(document)
document.reference_number
end

8
app/components/doctrine_index_table_component/doctrine_index_table_component.html.erb

@ -7,10 +7,10 @@
<tbody>
<% search_results.each do |search_result| %>
<tr href="<%= document_path(search_result.document_id) %>" class="clickable-tr">
<td> <%= document_reference_number(search_result.document) %> </td>
<td> <%= document_title(search_result.document) %> </td>
<td> <%= date_or_year(search_result.document) %> </td>
<tr href="<%= jurisprudence(search_result).present? ? document_path(jurisprudence(search_result).id) : '#' %>" class="clickable-tr">
<td> <%= document_reference_number(jurisprudence(search_result)) %> </td>
<td> <%= document_title(jurisprudence(search_result)) %> </td>
<td> <%= date_or_year(jurisprudence(search_result)) %> </td>
</tr>
<% end %>
</tbody>

5
app/components/doctrine_modal_form_component/doctrine_modal_form_component.html.erb

@ -19,6 +19,11 @@
<select id="doctine_content_suggestions" class="form-control ps-0"> </select>
</div>
<div class="mb-3">
<label for="subject-name" class="col-form-label">Head Note</label>
<%= text_field_tag :headnote, nil, class: "form-control", placeholder: "Head note", data: { target: "doctrines.headnote" } %>
</div>
<div class="mb-3">
<label for="subject-name" class="col-form-label">Content</label>
<%= rich_text_area_tag :content, nil, placeholder: "Doctrine Content", data: { target: "doctrines.content" } %>

12
app/components/document_doctrine_index_component.rb

@ -10,13 +10,9 @@ class DocumentDoctrineIndexComponent < BaseComponent
delegate :id, to: :doctrine
delegate :subject_ids, to: :doctrine
delegate :content, to: :doctrine
delegate :document_id, to: :doctrine
delegate :annotations, to: :doctrine
delegate :subjects, to: :doctrine
def doctrine_form_url
jurisprudence_doctrines_path(jurisprudence_id: document_id)
end
delegate :doctrine_jurisprudences, to: :doctrine
def annotation_form_url
doctrine_annotations_path(doctrine_id: id)
@ -26,6 +22,12 @@ class DocumentDoctrineIndexComponent < BaseComponent
"(No Subjects Provided)"
end
def jurisprudence
return nil if doctrine_jurisprudences.blank?
doctrine_jurisprudences.first.jurisprudence
end
def document_title(annotation)
return annotation.document.short_title if annotation.document.short_title.present?

2
app/components/document_doctrine_index_component/document_doctrine_index_component.html.erb

@ -1,4 +1,4 @@
<div class="row-flex m-3 mt-0 doctrine-content-body clickable-link" href="<%= opts[:is_disable_clickable_link].present? ? '#' : document_doctrine_path(document_id, id)%>">
<div class="row-flex m-3 mt-0 doctrine-content-body clickable-link" href="<%= jurisprudence.present? ? document_doctrine_path(jurisprudence.id, id) : doctrine_path(id)%>">
<% if opts[:is_subjects_index].blank? %>
<% if opts[:is_doctrines_index].present? && opts[:subject_ids].reject(&:blank?).present? %>
<h5 style="color: darkred;"> <%= subjects.where(id: opts[:subject_ids].map(&:to_i)).map(&:lineage_name).join(" ") %> </h5>

20
app/components/document_doctrine_show_component.rb

@ -1,28 +1,20 @@
class DocumentDoctrineShowComponent < BaseComponent
attr_reader :current_user, :doctrine, :subjects
attr_reader :current_user, :document_id, :doctrine, :subjects
def initialize(current_user:, doctrine:, subjects:, opts: {})
def initialize(current_user:, doctrine:, document_id:, subjects:, opts: {})
@doctrine = doctrine
@document_id = document_id
@current_user = current_user
@subjects = subjects
end
delegate :id, to: :doctrine
delegate :headnote, to: :doctrine
delegate :subject_ids, to: :doctrine
delegate :content, to: :doctrine
delegate :document_id, to: :doctrine
delegate :document, to: :doctrine
delegate :annotations, to: :doctrine
delegate :subjects, to: :doctrine
def doctrine_form_url
jurisprudence_doctrines_path(jurisprudence_id: document_id)
end
def edit_doctrine_form_url
jurisprudence_doctrines_path(jurisprudence_id: document_id, id: id)
end
def annotation_form_url
doctrine_annotations_path(doctrine_id: id,)
end
@ -33,8 +25,8 @@ class DocumentDoctrineShowComponent < BaseComponent
annotation.document.title
end
def all_subjects
Cdao::Subject.all.order(name: :asc)
def document
Document.find(document_id)
end
def date_or_year(annotation)

21
app/components/document_doctrine_show_component/document_doctrine_show_component.html.erb

@ -5,9 +5,9 @@
<h5> <b>Doctrine Details</b> </h5>
</div>
<div class="col-sm-2 d-flex justify-content-end pe-0">
<a class="btn btn-sm btn-secondary me-3" data-controller="doctrines" data-document-id="<%= document_id %>" data-doctrine-id="<%= id %>" data-action="click->doctrines#renderForm" data-bs-toggle="modal" data-bs-target="#doctrineModal"> Edit </a>
<a class="btn btn-sm btn-danger" href="<%= jurisprudence_doctrine_path(document_id, id) %>" data-confirm="Are you sure to delete this record?" data-method="DELETE"> Delete </a>
<div class="col-sm-2 d-flex justify-content-end pe-0" data-controller="doctrines" data-document-id="<%= document_id %>" data-doctrine-id="<%= id %>" >
<a class="btn btn-sm btn-secondary me-3"data-action="click->doctrines#renderForm" data-bs-toggle="modal" data-bs-target="#doctrineModal"> Edit </a>
<a class="btn btn-sm btn-danger" data-action="click->doctrines#delete" > Delete </a>
</div>
</div>
@ -19,7 +19,7 @@
<div class="card-body pt-0">
<div class="row">
<div class="col-sm-2" style="width: 100px;">
<div class="col-sm-2" style="width: 120px;">
<strong> Subjects: </strong>
</div>
@ -29,7 +29,17 @@
</div>
<div class="row">
<div class="col-sm-2" style="width: 100px;">
<div class="col-sm-2" style="width: 120px;">
<strong> Head Note: </strong>
</div>
<div class="col-sm-10">
<%= headnote %>
</div>
</div>
<div class="row">
<div class="col-sm-2" style="width: 120px;">
<strong> Content: </strong>
</div>
@ -56,6 +66,7 @@
</div>
<div class="row tab">
<div class="col-sm-12default-pagination"> </div>
<table class="table table-striped table-hover mb-0" style="width: 98%; margin: 0 auto;">
<thead>
<th class="bg-light"> Reference No. </th>

7
app/components/subject_index_form_component/subject_index_form_component.html.erb

@ -1,4 +1,4 @@
<%= form_for(subject_index, url: opts[:form_url], method: opts[:form_method]) do |form| %>
<%= form_for(subject_index, url: opts[:form_url], method: opts[:form_method], data: { reflex: "submut->SubjectsReflex#save" }) do |form| %>
<div class="row">
<div class="col-sm-12 p-2">
<strong> <%= label_tag :name %> </strong>
@ -9,9 +9,9 @@
<% if parent_id.present? %>
<div cass="row">
<div class="col-sm-12 p-2">
<div class="col-sm-12">
<strong> <%= label_tag :subjects %> </strong>
<%= select_tag :parent_id, options_from_collection_for_select(all_subjects, :id, :lineage_name, parent_id), class: "form-select default-selectize", prompt: "Please select" %>
<select class="form-control subjects-selectize ps-0" name="parent_id" id="parent_id" value="<%= parent_id %>"> </select>
</div>
</div>
<% end %>
@ -19,6 +19,7 @@
<div class="row">
<div class="col-sm-12 d-flex justify-content-end p-2">
<%= submit_tag "Save", class: "btn btn-primary" %>
<button type="button" class="btn btn-secondary" href="<%= subject_indexes_path() %>"> Back </button>
</div>
</div>
<% end %>

5
app/controllers/api/doctrines_controller.rb

@ -21,7 +21,7 @@ module Api
attrs = resource_params.to_unsafe_h.deep_symbolize_keys
subject_ids = attrs.delete(:subject_ids)
@doctrine = Doctrine.new(attrs)
@doctrine = ::Doctrine.new(attrs)
if @doctrine.save
@doctrine.subject_ids = subject_ids if subject_ids.present?
@ -54,7 +54,7 @@ module Api
private
def resource_params
params.permit(:content, jurisprudence_ids: [], subject_ids: [])
params.permit(:content, :headnote, jurisprudence_ids: [], subject_ids: [])
end
def search_params
@ -63,4 +63,3 @@ module Api
end
end
end

5
app/controllers/api/documents_controller.rb

@ -1,7 +1,6 @@
module Api
class DocumentsController < BaseController
load_and_authorize_resource :document, class: "Cdao::Document", only: %i[show]
authorize_resource :document, class: "Cdao::Document", only: %i[index]
def index
search = document_search(search_params)
@ -21,10 +20,10 @@ module Api
fulltext_fields = %i[reference_number title short_title].freeze
search = Cdao::Document.search do
fulltext search_params[:q], fields: fulltext_fields, query_phrase_slop: 1, minimum_match: 1 if search_params[:q].present?
fulltext search_params[:q], fields: fulltext_fields, query_phrase_slop: 1 if search_params[:q].present?
fulltext_fields.each do |field|
fulltext search_params[field], fields: [field], query_phrase_slop: 1, minimum_match: 1 if search_params[field].present?
fulltext search_params[field], fields: [field], query_phrase_slop: 1 if search_params[field].present?
end
with(:year, search_params[:year].to_i) if search_params[:year].present?

28
app/controllers/concerns/document_search.rb

@ -0,0 +1,28 @@
module DocumentSearch
def document_search(search_params)
fulltext_fields = %i[reference_number title short_title].freeze
search = Cdao::Document.search do
fulltext search_params[:q], fields: fulltext_fields, query_phrase_slop: 1 if search_params[:q].present?
fulltext_fields.each do |field|
fulltext search_params[field], fields: [field], query_phrase_slop: 1 if search_params[field].present?
end
with(:year, search_params[:year].to_i) if search_params[:year].present?
without(:id).any_of(search_params[:exclude_ids]) if search_params[:exclude_ids].present?
with(:citation_finders_names).any_of(search_params[:citation_finder]) if search_params[:citation_finder].present?
with(:is_only_in_premium_libraries, false)
order_by :doc_date, :desc
order_by :year, :desc
paginate page: search_params[:page] || 1, per_page: search_params[:per_page] || 20
end
search
end
end

6
app/controllers/doctrines_controller.rb

@ -21,7 +21,9 @@ class DoctrinesController < ApplicationController
end
end
def show; end
def show
@jurisprudence = @doctrine.doctrine_jurisprudences.present? ? @doctrine.doctrine_jurisprudences.first.jurisprudence : nil
end
def create
attrs = resource_params.to_unsafe_h.deep_symbolize_keys
@ -60,7 +62,7 @@ class DoctrinesController < ApplicationController
private
def resource_params
params.permit(:content, jurisprudence_ids: [], subject_ids: [])
params.permit(:content, :headnote, jurisprudence_ids: [], subject_ids: [])
end
def search_params

7
app/javascript/controllers/annotations_controller.js

@ -8,12 +8,7 @@ export default class extends ApplicationController {
}
searchDocument () {
var $this = this
$.get("/api/documents.json", { q: $this.qTarget.value }, function (data, status) {
if (status === "success") {
$this.stimulate("AnnotationReflex#render_document_search_results", data)
}
});
this.stimulate("AnnotationReflex#render_document_search_results", { q: this.qTarget.value })
}
renderForm () {

45
app/javascript/controllers/doctrines_controller.js

@ -1,6 +1,6 @@
import ApplicationController from './application_controller'
export default class extends ApplicationController {
static targets = ["input", "document_id", "doctrine_id", "content"]
static targets = ["input", "document_id", "doctrine_id", "headnote", "content"]
connect () {
super.connect()
@ -11,12 +11,11 @@ export default class extends ApplicationController {
$modal = $("#doctrineModal"), $subject_ids_el = $modal.find(".subject-ids-selectize"),
$subject_ids_selectize = $subject_ids_el[0].selectize
console.log(this.element.dataset)
$modal.find("#document_id").val(document_id)
if (doctrine_id !== null && doctrine_id !== undefined && doctrine_id !== "") {
$modal.find("#doctine_content_suggestions_div").hide()
$.get("/api/doctrines/" + doctrine_id + ".json", {}, function (doctrine, status) {
$modal.find("#document_id").val(doctrine.document_id)
$modal.find("#doctrine_id").val(doctrine.id)
if (status === "success") {
$.get("/api/subjects.json?doctrine_ids=" + doctrine.id, { per_page: 100 }, function (subjects, status) {
@ -26,11 +25,14 @@ export default class extends ApplicationController {
})
$subject_ids_selectize.refreshOptions()
$subject_ids_selectize.setValue(doctrine.subject_ids)
$subject_ids_selectize.setValue(doctrine.subject_ids, true)
$subject_ids_selectize.blur()
$subject_ids_selectize.close()
}
});
$modal.find(".trix-content").val(doctrine.content)
$modal.find("#headnote").val(doctrine.headnote)
}
})
@ -41,22 +43,47 @@ export default class extends ApplicationController {
$modal.find(".modal-title").text("New Doctrine")
$modal.find(".trix-content").val("")
$subject_ids_selectize.setValue([])
$modal.find("#document_id").val(document_id)
$modal.find("#doctrine_id").val('')
$modal.find("#headnote").val('')
}
}
save () {
var $modal = $("#doctrineModal"), document_id = this.document_idTarget.value, doctrine_id = this.doctrine_idTarget.value
const params = { subject_ids: $modal.find("select[name='subject_ids[]']").val(), content: this.contentTarget.value }
var params = { subject_ids: $modal.find("select[name='subject_ids[]']").val(), headnote: this.headnoteTarget.value,
content: this.contentTarget.value }
if (doctrine_id !== null && doctrine_id !== undefined && doctrine_id !== "") {
$.ajax({
url: "/jurisprudences/" + document_id + "/doctrines/" + doctrine_id,
url: "/api/doctrines/" + doctrine_id,
type: 'PUT',
data: params
data: params,
success: function() {
location.pathname = "/documents/" + document_id + "/doctrines/" + doctrine_id
}
})
} else {
$.post("/jurisprudences/" + document_id + "/doctrines", params)
$.post("/api/doctrines", $.extend({ jurisprudence_ids: [document_id] }, params), function(data, status) {
if(status === 'success') {
location.pathname = "/documents/" + document_id + "/doctrines/" + data.id
}
})
}
}
delete(ev) {
var doctrine_id = this.element.dataset["doctrineId"], document_id = this.element.dataset["documentId"]
ev.preventDefault();
const contrim_alert = confirm("Are you sure to delete this record?")
if (contrim_alert) {
$.ajax({
url: "/api/doctrines/" + doctrine_id,
type: 'DELETE',
success: function() {
location.pathname = "/documents/" + document_id
}
})
}
}
}

157
app/javascript/controllers/document_controller.js

@ -4,16 +4,161 @@ export default class extends ApplicationController {
connect () {
super.connect()
$.fn.footnotes = function () {
var a, b, c;
a = $(this), b = a.find('a[href^="#footnote"]')
c = a.find('p>span, p>a[href^="#fn"]>span').filter(function() {
return ($(this).css('color') == 'rgb(255, 0, 0)')
})
b.each(function(){
var $this = $(this);
if($this.anchor_check()) {
if(!$this.parent('span.footnote-x').length) {
// Wrap the anchor with 'footnote-x'
$this.wrap('<span class="footnote-x"></span>')
}
}
})
search () {
var $this = this
// Append index to every anchor
b = a.find('span.footnote-x a[href^="#footnote"]')
b.each(function() {
var $this = $(this);
var $matches = $($this.prop("tagName") + '#' + $this.attr("id") + ':not([data-index])')
var index = 0;
$.get("/api/documents.json", { q: $this.inputTarget.value }, function (data, status) {
if (status === "success") {
$this.stimulate("DocumentReflex#render_index_table", data, $this.element.dataset["documentId"], $this.element.dataset["doctrineId"])
$matches.each(function(){
$(this).attr('id', $(this).attr('id') + '_' + index)
$(this).attr('name', $(this).attr('name') + '_' + index)
$(this).attr('href', $(this).attr('href') + '_' + index)
$(this).attr('data-index', index)
index = index + 1;
})
})
c.each(function(){
var $this = $(this)
$this.footnote_check()
})
c = a.find('a[href^="#fn"]')
c.each(function() {
var $this = $(this);
var $matches = $($this.prop("tagName") + '#' + $this.attr("id") + ':not([data-index])')
var index = 0;
$matches.each(function(){
var self, parent
self = $(this), parent = self.parent()
self.closest('p').find('#cdasiatab').detach()
self.attr('id', self.attr('id') + '_' + index)
self.attr('name', self.attr('name') + '_' + index)
self.attr('href', self.attr('href') + '_' + index)
self.attr('data-index', index)
parent.is('a') ? parent.replaceWith(self) : parent.closest('a').replaceWith(parent) // Remove parent its parent 'a' tag
index = index + 1;
})
})
}
});
$.fn.anchor_check = function () {
var a, b, c, d;
a = $(this), b = a.attr('href'), c = $.trim(a.text())
if (!$.isNumeric($.trim(c)) && c != '*' && c != 'n') { return false }
if($.trim(b) && a.is('[href^="#footnote"]')){
// Check whether href, name and text is valid
var a_href_id = a.attr('href').substring(9) // Get only the value after '#footnote'
var a_name_id = a.attr('name') ? a.attr('name').substring(2) : a_href_id // Get only the value after 'fn' if name attr is present if not return a_href_id
var a_id = a.attr('id') ? a.attr('id').substring(2) : ''
if(a_href_id != a_name_id || a_href_id != c || a_id != c || a_name_id != c){
a.attr('href', '#footnote' + c), a.attr('id', 'fn' + c), a.attr('name', 'fn' + c)
}
} else {
// If anchor to footnote is invalid by href=#footnote*** or no href
// the text inside the 'a' tag will use as a reference
a.attr('href', '#footnote' + c), a.attr('id', 'fn' + c), a.attr('name', 'fn' + c)
}
return true;
}
$.fn.footnote_check = function () {
var a, b, c, d;
a = $(this), d = null
if (a.find('a:not([href^="#footnote"])').size()) {
a.find('a').each(function(){
b = $.trim($(this).text()), c = b.match(/([\*]{1,3}|[\d]{1,3})/)
if (c!= null) {
c = c[0]
d = $(document.createElement('a'))
d.text(b), d.attr('href', '#fn' + c), d.attr('id', 'footnote' + c), d.attr('name', 'footnote' + c), d.addClass('m-r-lg'), d.css('color', 'red')
a.html(''), a.append(d)
return true;
}
})
if (d=null) {
return false
}
} else if (!a.find('a').size()) {
b = $.trim(a.text()), c = b.match(/([\*]{1,3}|[\d]{1,3})/)
if(c!= null){
c = c[0]
d = $(document.createElement('a'))
d.text(b), d.attr('href', '#fn' + c), d.attr('id', 'footnote' + c), d.attr('name', 'footnote' + c), d.addClass('m-r-lg'), d.css('color', 'red')
a.html(''), a.append(d)
}else{
return false
}
}
return true
}
$.fn.footnote = function () {
var a = $(this)
var b, c, d;
b = $(a.attr('href'))
if (b.length<=0 && a.data('index')>0) {
var a_id = a.attr('id').substring(0, a.attr('id').indexOf('_'))
var a_like = $('a[href^="#footnote"][id^="' + a_id + '"]')
var a_found = false;
a_like.each(function() {
if(!a_found){ b = $($(this).attr('href')) }
a_found = b.length > 0
})
}
if (b.length>0) {
c = b.closest('p')
d = c.footnote_text(b.parent('span') || b), d = d.substring(0,499) + (d.length > 500 ? '...' : '')
a.attr('data-original-title', d), a.attr('data-toggle', 'tooltip')
a.tooltip({title: d}), a.tooltip('show')
}
return a
}
$.fn.footnote_text = function (except) {
var a = '';
$(this).children().not(except).each(function() {
// Check first if the current select element not equal to except
var self = $(this)
a += self.text()
})
return a;
}
}
search () {
this.stimulate("DocumentReflex#render_index_table",
{ q: this.inputTarget.value },
this.element.dataset["documentId"],
this.element.dataset["doctrineId"])
}
loadYears () {

19
app/javascript/controllers/selectize_controller.js

@ -69,13 +69,28 @@ export default class extends ApplicationController {
var $subject_ids_selectize = $(".subject-ids-selectize").selectize($.extend(subject_ids_opts, default_opts));
var subjects_selectize_opts = {
load: function (query, callback) {
$.get("/api/subjects.json", { q: query, per_page: 100 }, function (data, status) {
if (status === 'success') {
callback(data);
}
})
}
}
var $subjects_selectize = $(".subjects-selectize").selectize($.extend(subjects_selectize_opts, default_opts))
$.get("/api/subjects.json", { per_page: 100 }, function (results, status) {
if (status === 'success') {
$.each(results, function (i, result) {
$subject_ids_selectize[0].selectize.addOption(result);
if ($subject_ids_selectize.length) $subject_ids_selectize[0].selectize.addOption(result, true);
if ($subjects_selectize.length) $subjects_selectize[0].selectize.addOption(result, true);
})
$subject_ids_selectize[0].selectize.refreshOptions();
if ($subject_ids_selectize.length) $subject_ids_selectize[0].selectize.refreshOptions();
if ($subjects_selectize.length) $subjects_selectize[0].selectize.refreshOptions();
}
});

2
app/javascript/src/application.scss

@ -43,7 +43,7 @@
// Modal Form custom styling //
.modal-doctrine-body .selectize-control {
.selectize-control {
border: none !important;
}

30
app/models/cdao/subject.rb

@ -1,7 +1,11 @@
require "csv"
class Cdao::Subject < Cdao::Base
default_scope { joins(:library_subjects)
.where(cdao_library_subjects: { library_id: [Cdao::Library.find_by(key: "JurisprudenceEncyclopedia").try(:id)] }) }
has_paper_trail
has_ancestry
has_many :library_subjects, dependent: :restrict_with_error
@ -48,6 +52,32 @@ class Cdao::Subject < Cdao::Base
[name, "(#{product_names})"].join(" ")
end
def self.parse_csv_file(path)
::CSV.foreach(path).each_with_index do |data, index|
next if data[0].blank?
names = data[0].split("; ").map(&:strip)
root_name = names[0]
sub1_name = names[1]
sub2_name = names[2]
sub3_name = names[3]
sub4_name = names[4]
sub5_name = names[5]
sub6_name = names[6]
root = Cdao::Subject.find_or_initialize_by(name: root_name, ancestry: nil) if root_name.present?
sub1 = root.children.find_or_initialize_by(name: sub1_name) if root.present? && sub1_name.present?
sub2 = sub1.children.find_or_initialize_by(name: sub2_name) if sub1.present? && sub2_name.present?
sub3 = sub2.children.find_or_initialize_by(name: sub3_name) if sub2.present? && sub3_name.present?
sub4 = sub3.children.find_or_initialize_by(name: sub4_name) if sub3.present? && sub4_name.present?
sub5 = sub4.children.find_or_initialize_by(name: sub5_name) if sub4.present? && sub5_name.present?
sub6 = sub5.children.find_or_initialize_by(name: sub6_name) if sub5.present? && sub6_name.present?
root.descendants.each { |a| a.library_ids = [Cdao::Library.find_by(key: "JurisprudenceEncyclopedia").try(:id)] } if root.present?
end
end
searchable do
integer :id
integer :parent_id

7
app/models/doctrine.rb

@ -1,8 +1,6 @@
class Doctrine < ApplicationRecord
belongs_to :document, polymorphic: true, optional: false
has_many :doctrine_jurisprudences, dependent: :destroy
has_many :jurisprudences, through: :doctrine_jurisprudences
has_many :jurisprudences, class_name: "Cdao::Jurisprudence", through: :doctrine_jurisprudences
has_many :doctrine_subjects, dependent: :destroy
has_many :subjects, through: :doctrine_subjects
@ -10,7 +8,7 @@ class Doctrine < ApplicationRecord
has_many :annotations, dependent: :destroy
validates :content, presence: true
validates :content_fingerprint, uniqueness: { scope: %i[document_id document_type] }
validates :content_fingerprint, uniqueness: true
before_validation do
self.content_fingerprint = Digest::SHA256.hexdigest(content)
@ -54,7 +52,6 @@ class Doctrine < ApplicationRecord
text :content
integer :id
integer :document_id
integer :subject_ids, multiple: true

8
app/reflexes/annotation_reflex.rb

@ -1,8 +1,12 @@
# frozen_string_literal: true
class AnnotationReflex < ApplicationReflex
def render_document_search_results(results)
include DocumentSearch
def render_document_search_results(search_params)
search = document_search(search_params)
@documents = search.results
opts = { is_citing_document: true }
morph "tbody#documentSearchResultTable", render(partial: "document_search_results_table", locals: { search_results: results, opts: opts })
morph "tbody#documentSearchResultTable", render(partial: "document_search_results_table", locals: { search_results: @documents, opts: opts })
end
end

14
app/reflexes/document_reflex.rb

@ -1,18 +1,22 @@
# frozen_string_literal: true
class DocumentReflex < ApplicationReflex
include JurisprudenceSearch
include DocumentSearch
def render_index_table(results, document_id, doctrine_id)
def render_index_table(search_params, document_id, doctrine_id)
search = document_search(search_params)
@documents = search.results
opts = { is_case_lists: true, doctrine_id: doctrine_id }
morph "tbody#documentIndexTable", render(partial: "document_search_results_table", locals: { search_results: results, opts: opts })
morph "tbody#documentIndexTable", render(partial: "document_search_results_table", locals: { search_results: @documents, opts: opts })
end
def render_years(results)
morph "tbody#yearsIndex", render(DocumentsYearsComponent.new(current_user: current_user, years: results))
end
def render_modal_document_search_table(results)
morph "tbody#modalDocumentSearchTable", render(partial: "document_search_results_table", locals: { search_results: results, opts: { is_citing_document: true } })
def render_modal_document_search_table(search_params)
search = document_search(search_params)
@documents = search.results
morph "tbody#modalDocumentSearchTable", render(partial: "document_search_results_table", locals: { search_results: @documents, opts: { is_citing_document: true } })
end
end

10
app/reflexes/subjects_reflex.rb

@ -4,4 +4,14 @@ class SubjectsReflex < ApplicationReflex
def load_sidenav_accordion(search_results, opts = {})
morph "#"
end
def save
raise @subject_index.inspect
end
private
def resource_params
params.permit(:name, :parent_id, library_ids: [])
end
end

1
app/views/api/doctrines/create.json.jbuilder

@ -0,0 +1 @@
json.(@doctrine, *%i[id subject_ids headnote content plain_content created_at updated_at])

1
app/views/api/doctrines/destroy.json.jbuilder

@ -0,0 +1 @@
json.(@doctrine, *%i[id subject_ids headnote content plain_content created_at updated_at])

2
app/views/api/doctrines/index.json.jbuilder

@ -1,3 +1,3 @@
json.array!(@doctrines) do |doctrine|
json.extract! doctrine, *%i[id subject_ids content plain_content created_at updated_at]
json.extract! doctrine, *%i[id subject_ids headnote content plain_content created_at updated_at]
end

2
app/views/api/doctrines/show.json.jbuilder

@ -1 +1 @@
json.(@doctrine, *%i[id document_id subject_ids content plain_content created_at updated_at])
json.(@doctrine, *%i[id subject_ids headnote content plain_content created_at updated_at])

1
app/views/api/doctrines/update.json.jbuilder

@ -0,0 +1 @@
json.(@doctrine, *%i[id subject_ids headnote content plain_content created_at updated_at])

8
app/views/api/documents/index.json.jbuilder

@ -1,3 +1,11 @@
json.results do
json.array!(@documents) do |document|
json.extract! document, *%i[id reference_number clean_reference_number title short_title doc_date year phil_rep scra]
end
end
json.total_pages @documents.total_pages
json.current_page @documents.current_page
json.previous_page @documents.previous_page
json.next_page @documents.next_page
json.per_page @documents.per_page

1
app/views/doctrines/search.html.erb

@ -8,5 +8,4 @@
<% else %>
<%= render(DocumentDoctrineIndexComponent.with_collection(@doctrines, current_user: current_user, opts: { is_doctrines_index: true, subject_ids: params[:subject_ids] })) %>
<% end %>
</div>

26
app/views/doctrines/show.html.erb

@ -0,0 +1,26 @@
<div class="card mt-1 g-3">
<div class="card-header mb-0 col-sm-12">
<table class="table table-borderless mb-0">
<tbody>
<tr>
<td class="text-start" style="width: 160px;"> Reference Number: </td>
<td class="text-start"> <strong> <%= @jurisprudence.present? ? @jurisprudence.reference_number : "(No Document Reference NUmber)" %> </strong> </td>
<td class="text-end" style="width: 50px;" > Date: </td>
<td class="text-end" style="width: 160px;"> <strong> <%= @jurisprudence.present? ? @jurisprudence.docdate : "(No Document Date)" %> </strong> </td>
</tr>
<tr>
<td style="width: 160px;" class="text-start"> Title: </td>
<td colspan="3" class="text-start"> <strong> <%= @jurisprudence.present? ? @jurisprudence.short_title || @jurisprudence.title : "(No Document Date)" %> </strong> </td>
</tr>
</tbody>
</table>
</div>
<div class="card-body pt-0">
<div class="row">
<%= render(DocumentDoctrineShowComponent.new(current_user: current_user, doctrine: @doctrine, document_id: @jurisprudence.present? ? @jurisprudence.id : @jurisprudence, subjects: @subjects)) %>
</div>
</div>
</div>

24
app/views/document/doctrines/_document_search_results_table.html.erb

@ -1,17 +1,17 @@
<% search_results.each do |search_result| %>
<tr>
<td> <%= search_result["clean_reference_number"] %> </td>
<td> <%= search_result["short_title"] || search_result["title"] %> </td>
<td> <%= search_result["doc_date"].present? ? search_result["doc_date"].to_date.strftime("%m/%d/%Y") : search_result["year"] %> </td>
<td> <%= search_result.clean_reference_number %> </td>
<td> <%= search_result.short_title || search_result.title %> </td>
<td> <%= search_result.doc_date.present? ? search_result.doc_date : search_result.year %> </td>
<% if opts[:is_case_lists].present? && opts[:doctrine_id].present? %>
<td>
<% date_or_year = search_result["doc_date"].present? ? search_result["doc_date"].to_date.strftime("%B %d, %Y") : search_result["year"] %>
<% title = search_result["short_title"].present? ? search_result["short_title"] : search_result["title"] %>
<% date_or_year = search_result.doc_date || search_result.year %>
<% title = search_result.short_title || search_result.title %>
<a class="btn btn-sm btn-primary" data-bs-toggle="modal" data-bs-target="#annotationModal" data-controller="annotations"
data-doctrine-id="<%= opts[:doctrine_id] %>" data-document-id="<%= search_result['id'] %>" data-document-title="<%= title %>"
data-document-reference-number="<%= search_result['clean_reference_number'] %>" data-document-date-or-year="<%= date_or_year %>"
data-document-phil-rep="<%= search_result['phil_rep'] %>" data-action="click->annotations#renderForm">
data-doctrine-id="<%= opts[:doctrine_id] %>" data-document-id="<%= search_result.id %>" data-document-title="<%= title %>"
data-document-reference-number="<%= search_result.clean_reference_number %>" data-document-date-or-year="<%= date_or_year %>"
data-document-phil-rep="<%= search_result.phil_rep %>" data-action="click->annotations#renderForm">
Add Annotations
</a>
</td>
@ -19,10 +19,10 @@
<% if opts[:is_citing_document].present? %>
<td>
<a class="btn btn-sm btn-primary" data-controller="annotations" data-document-id="<%= search_result["id"] %>"
data-document-reference-number="<%= search_result['clean_reference_number'] %>"
data-document-date="<%= search_result['doc_date'].present? ? search_result['doc_date'].to_date.strftime('%B %d, %Y') : search_result['year'] %>"
data-document-title="<%= search_result['short_title'] || search_result['title'] %>"
<a class="btn btn-sm btn-primary" data-controller="annotations" data-document-id="<%= search_result.id %>"
data-document-reference-number="<%= search_result.clean_reference_number %>"
data-document-date="<%= search_result.doc_date || search_result.year %>"
data-document-title="<%= search_result.short_title || search_result.title %>"
data-action="click->annotations#addCitingDocument" >
Add
</a>

2
app/views/document/doctrines/show.html.erb

@ -25,7 +25,7 @@
</div>
<div class="row">
<%= render(DocumentDoctrineShowComponent.new(current_user: current_user, doctrine: @doctrine, subjects: @subjects)) %>
<%= render(DocumentDoctrineShowComponent.new(current_user: current_user, doctrine: @doctrine, document_id: @document.id, subjects: @subjects)) %>
</div>
</div>
</div>

2
app/views/documents/show.html.erb

@ -61,7 +61,7 @@
</div>
<div class="container-sm row-flex col-sm-12 p-0 doct-body-index">
<%= render(DocumentDoctrineIndexComponent.with_collection(@doctrines, current_user: current_user)) %>
<%= render(DocumentDoctrineIndexComponent.with_collection(@doctrines, current_user: current_user, opts: { document_id: @document.id })) %>
</div>
</div>

2
app/views/layouts/application.html.erb

@ -16,7 +16,7 @@
<div class="<%= current_user.present? ? 'row flex-nowrap h-100 w-100 p-0 ms-0' : 'row h-100 justify-content-center align-items-center' %>">
<% if current_user.present? %>
<div class="col-auto col-md-3 col-xl-2 px-sm-2 px-0 bg-secondary min-vh-100" style="padding: 0 !important;">
<%= render(SidenavComponent.new(current_user: current_user))%>
<%= render(SidenavComponent.new(current_user: current_user, opts: { is_sidenav: true }))%>
</div>
<% end %>

1
app/views/shared/_pagination.html.erb

@ -0,0 +1 @@
<div class="container m-2"> <%= render PaginationComponent.new(data: search_results) %> </div>

4
config/routes.rb

@ -3,7 +3,7 @@ Rails.application.routes.draw do
root to: "home#index"
resources :doctrines, only: %i[index] do
resources :doctrines, only: %i[index show] do
get :search, on: :collection
scope module: :doctrine do
resources :annotations, only: %i[create update destroy]
@ -26,7 +26,7 @@ Rails.application.routes.draw do
end
namespace :api, defaults: { format: :json } do
resources :doctrines, only: %i[index show] do
resources :doctrines do
scope module: :doctrine do
resources :annotations
end

226
data/csvs/civil.csv

@ -0,0 +1,226 @@
"Civil Law"
"Civil Law; Effect and Application of Laws"
"Civil Law; Human Relations"
"Civil Law; Human Relations; Prejudicial Questions"
"Civil Law; Persons"
"Civil Law; Persons; Civil Personality"
"Civil Law; Persons; Civil Personality; General Provisions"
"Civil Law; Persons; Civil Personality; General Provisions; Juridical Capacity"
"Civil Law; Persons; Civil Personality; General Provisions; Restrictions on Capacity to Act"
"Civil Law; Persons; Civil Personality; Natural Persons"
"Civil Law; Persons; Civil Personality; Juridical Persons"
"Civil Law; Persons; Domicile and Residence"
"Civil Law; Persons; Citizenship and Naturalization"
"Civil Law; Persons; Citizenship and Naturalization; Citizens of the Philippines"
"Civil Law; Persons; Citizenship and Naturalization; Naturalization"
"Civil Law; Persons; The Family Code"
"Civil Law; Persons; Marriage"
"Civil Law; Persons; Marriage; Definition"
"Civil Law; Persons; Marriage; Essential Requisites"
"Civil Law; Persons; Marriage; Formal Requisites"
"Civil Law; Persons; Marriage; Formal Requisites; Authority of Solemnizing Officer"
"Civil Law; Persons; Marriage; Formal Requisites; Marriage License"
"Civil Law; Persons; Marriage; Formal Requisites; Marriage Ceremony"
"Civil Law; Persons; Marriage; Void and Voidable Marriages"
"Civil Law; Persons; Marriage; Void and Voidable Marriages; Marriages Void Ab Initio"
"Civil Law; Persons; Marriage; Void and Voidable Marriages; Voidable Marriages"
"Civil Law; Persons; Marriage; Void and Voidable Marriages; Action for Annulment or Declaration of Absolute Nullity of Marriage"
"Civil Law; Persons; Marriage; Legal Separation"
"Civil Law; Persons; Marriage; Legal Separation; Grounds"
"Civil Law; Persons; Marriage; Legal Separation; Grounds for Denial of Petition for Legal Separation"
"Civil Law; Persons; Marriage; Legal Separation; Action for Legal Separtion"
"Civil Law; Persons; Marriage; Rights and Obligations of Husband and Wife"
"Civil Law; Persons; Marriage; Property Relations Between Husband and Wife"
"Civil Law; Persons; Marriage; Property Relations Between Husband and Wife; Governing Law"
"Civil Law; Persons; Marriage; Property Relations Between Husband and Wife; Marriage Settlements"
"Civil Law; Persons; Marriage; Property Relations Between Husband and Wife; Donations by Reason of Marriage"
"Civil Law; Persons; Marriage; Property Relations Between Husband and Wife; System of Absolute Community"
"Civil Law; Persons; Marriage; Property Relations Between Husband and Wife; Conjugal Partnership of Gains"
"Civil Law; Persons; Marriage; Property Relations Between Husband and Wife; Separation of Property of the Spouses and Administration of Common Property by One Spouse During the Marriage"
"Civil Law; Persons; Marriage; Property Relations Between Husband and Wife; Regime of Separation of Property"
"Civil Law; Persons; Marriage; Property Relations Between Husband and Wife; Property Regime of Unions Without Marriage"
"Civil Law; Family"
"Civil Law; Family; The Family as an Institution"
"Civil Law; Family; Family Relations"
"Civil Law; Family; The Family Home"
"Civil Law; Paternity and Filiation"
"Civil Law; Paternity and Filiation; Natural Filiation"
"Civil Law; Paternity and Filiation; Natural Filiation; Legitimate Children"
"Civil Law; Paternity and Filiation; Natural Filiation; Legitimate Children; How Legitimacy May be Impugned"
"Civil Law; Paternity and Filiation; Natural Filiation; Legitimate Children; Proof of Filiation"
"Civil Law; Paternity and Filiation; Natural Filiation; Illegitimate Children"
"Civil Law; Paternity and Filiation; Natural Filiation; Legitimated Children"
"Civil Law; Paternity and Filiation; Adoption"
"Civil Law; Paternity and Filiation; Adoption; Who May Not Adopt"
"Civil Law; Paternity and Filiation; Adoption; Requirement for Husband and Wife to Jointly Adopt"
"Civil Law; Paternity and Filiation; Adoption; Who May Not be Adopted"
"Civil Law; Paternity and Filiation; Adoption; Written Consent for Adoption"
"Civil Law; Paternity and Filiation; Adoption; Effects of Adoption"
"Civil Law; Paternity and Filiation; Adoption; Legal or Intestate Succession to the Estate of the Adopted"
"Civil Law; Paternity and Filiation; Adoption; Judicial Rescission of Adoption"
"Civil Law; Support"
"Civil Law; Support; What It Includes"
"Civil Law; Support; Persons Obliged to Support Each Other"
"Civil Law; Support; Amount of Support"
"Civil Law; Funerals"
"Civil Law; Funerals; Duty and Right to Make Funeral Arrangements"
"Civil Law; Funerals; Funeral Rites"
"Civil Law; Parental Authority"
"Civil Law; Parental Authority; Exercise of Parental Authority"
"Civil Law; Parental Authority; Substitute and Special Parental Authority"
"Civil Law; Parental Authority; Effect of Parental Authority Upon the Persons of the Children"
"Civil Law; Parental Authority; Effect of Parental Authority Upon the Property of the Children"
"Civil Law; Parental Authority; Suspension or Termination of Parental Authority"
"Civil Law; Emancipation and Age of Majority"
"Civil Law; Emancipation and Age of Majority; Emancipation"
"Civil Law; Summary Judicial Proceedings in Family Law"
"Civil Law; Summary Judicial Proceedings in Family Law; Separation in Fact Between Husband and Wife"
"Civil Law; Summary Judicial Proceedings in Family Law; Incidents Involving Parental Authority"
"Civil Law; Summary Judicial Proceedings in Family Law; Other Matters Subject to Summary Proceedings"
"Civil Law; Surname"
"Civil Law; Surname; Use of Surnames"
"Civil Law; Surname; Use of Surnames; Children"
"Civil Law; Surname; Use of Surnames; Married Woman"
"Civil Law; Surname; Change of Name"
"Civil Law; Surname; Usurpation of Name or Surname"
"Civil Law; Surname; Unauthorized or Unlawful Use of Another's Surname"
"Civil Law; Surname; Employment of Pen or Stage Names"
"Civil Law; Absence"
"Civil Law; Absence; Provisional Measures in Case of Absence"
"Civil Law; Absence; Declaration of Absence"
"Civil Law; Absence; Administration of Property of Absentee"
"Civil Law; Absence; Presumption of Death"
"Civil Law; Absence; Effect of Absence Upon Contingent Rights of the Absentee"
"Civil Law; Civil Register"
"Civil Law; Civil Register; What Must be Entered in the Civil Register"
"Civil Law; Civil Register; Responsibility of Civil Registrar"
"Civil Law; Civil Register; Change or Correction of Entries"
"Civil Law; Property"
"Civil Law; Property; Classification of Property"
"Civil Law; Property; Classification of Property; Immovable or Real Property"
"Civil Law; Property; Classification of Property; Movable Property"
"Civil Law; Property; Property in Relation to Whom It Belongs"
"Civil Law; Property; Property in Relation to Whom It Belongs; Property of Public Dominion"
"Civil Law; Property; Property in Relation to Whom It Belongs; Private Property"
"Civil Law; Property; Ownership"
"Civil Law; Property; Ownership; Rights and Obligations of An Owner"
"Civil Law; Property; Ownership; Hidden Treasure"
"Civil Law; Property; Ownership; Rights of Accession"
"Civil Law; Property; Ownership; Rights of Accession; With Respect to What is Produced by Property"
"Civil Law; Property; Ownership; Rights of Accession; With Respect to Immovable Property"
"Civil Law; Property; Ownership; Rights of Accession; With Respect to Movable Property"
"Civil Law; Property; Ownership; Quieting of Title"
"Civil Law; Property; Ownership; Ruinous Buildings and Trees in Danger of Falling"
"Civil Law; Property; Co-ownership"
"Civil Law; Property; Co-ownership; Pro indiviso share"
"Civil Law; Property; Co-ownership; Pro indiviso share; Undivided thing or right belong to different persons, with each holding the property pro indiviso"
"Civil Law; Property; Co-ownership; Pro indiviso share; Sale by co-owner transfers only the seller's pro-indiviso share"
"Civil Law; Property; Co-ownership; Pro indiviso share; Buyer of pro indiviso share becomes a co-owner of property until the same is partitioned"
"Civil Law; Property; Some Special Properties"
"Civil Law; Property; Some Special Properties; Waters"
"Civil Law; Property; Some Special Properties; Waters; Ownership of Waters"
"Civil Law; Property; Possession"
"Civil Law; Property; Usufruct"
"Civil Law; Property; Easements or Servitudes"
"Civil Law; Property; Nuisance"
"Civil Law; Property; Registry of Property"
"Civil Law; Property; Different Modes of Acquiring Ownership"
"Civil Law; Property; Different Modes of Acquiring Ownership; Succession"
"Civil Law; Property; Different Modes of Acquiring Ownership; Succession; Partition and distribution of estate "
"Civil Law; Land Titles and Deeds"
"Civil Law; Land Titles and Deeds; Organic Laws "
"Civil Law; Land Titles and Deeds; Titling of Ancestral Lands and Ancestral Domains"
"Civil Law; Land Titles and Deeds; Title "
"Civil Law; Land Titles and Deeds; Commonwealth Act No. 141, as amended (The Public Land Act) "
"Civil Law; Land Titles and Deeds; Registration of Land Ownership"
"Civil Law; Land Titles and Deeds; Dealings in Registered Land "
"Civil Law; Land Titles and Deeds; Decree of Registration "
"Civil Law; Land Titles and Deeds; Certificates of Title "
"Civil Law; Land Titles and Deeds; Proceedings After Registration "
"Civil Law; Land Titles and Deeds; Administration of Land Registration "
"Civil Law; Land Titles and Deeds; Forms of Acknowledgments and Deeds "
"Civil Law; Land Titles and Deeds; Tax Liabilities Relevant to Land Registration "
"Civil Law; Land Titles and Deeds; Special Laws on Condominiums"
"Civil Law; Wills and Succession"
"Civil Law; Wills and Succession; General Provisions "
"Civil Law; Wills and Succession; Testamentary Succession "
"Civil Law; Wills and Succession; Legal or Intestate Succession "
"Civil Law; Wills and Succession; Provisions Common to Testate and Intestate Successions"
"Civil Law; Obligations and Contracts"
"Civil Law; Obligations and Contracts; Obligations — General Provisions"
"Civil Law; Obligations and Contracts; Nature and Effect of Obligations"
"Civil Law; Obligations and Contracts; Different Kinds of Obligations"
"Civil Law; Obligations and Contracts; Extinguishment of Obligations"
"Civil Law; Obligations and Contracts; Contracts — General Provisions"
"Civil Law; Obligations and Contracts; Essential Requisites of Contracts"
"Civil Law; Obligations and Contracts; Form of Contracts"
"Civil Law; Obligations and Contracts; Reformation of Instruments"
"Civil Law; Obligations and Contracts; Interpretation of Contracts"
"Civil Law; Obligations and Contracts; Interpretation of Contracts; Cannot be in favor of party causing the confusion"
"Civil Law; Obligations and Contracts; Classes of Defective Contracts "
"Civil Law; Obligations and Contracts; Natural Obligations "
"Civil Law; Obligations and Contracts; Estoppel "
"Civil Law; Obligations and Contracts; Trusts"
"Civil Law; Sales"
"Civil Law; Sales; Nature and Form of the Contract"
"Civil Law; Sales; Capacity to Buy or Sell"
"Civil Law; Sales; Effects of the Contract when the Thing Sold Has Been Lost"
"Civil Law; Sales; Obligations of the Vendor"
"Civil Law; Sales; Obligations of the Vendee"
"Civil Law; Sales; Breach of Contract of Sale"
"Civil Law; Sales; Extinguishment of Sale"
"Civil Law; Sales; Assignment of Credits and Other Incorporeal Rights"
"Civil Law; Lease"
"Civil Law; Lease; General Provisions"
"Civil Law; Lease; Lease of Rural and Urban Lands"
"Civil Law; Lease; General Provisions"
"Civil Law; Lease; Rights and Obligations of the Lessor and the Lessee"
"Civil Law; Lease; Special Provisions for Leases of Rural Lands"
"Civil Law; Lease; Special Provisions for the Lease of Urban Lands"
"Civil Law; Lease; Work and Labor"
"Civil Law; Partnership and Agency"
"Civil Law; Partnership and Agency; General Provisions"
"Civil Law; Partnership and Agency; Obligations of the Partners"
"Civil Law; Partnership and Agency; Dissolution and Winding Up"
"Civil Law; Partnership and Agency; Limited Partnership"
"Civil Law; Partnership and Agency; Nature, Form and Kinds of Agency"
"Civil Law; Partnership and Agency; Obligations of the Agent"
"Civil Law; Partnership and Agency; Obligations of the Principal"
"Civil Law; Partnership and Agency; Modes of Extinguishment of Agency"
"Civil Law; Credit Transactions"
"Civil Law; Credit Transactions; Loan "
"Civil Law; Credit Transactions; Deposit "
"Civil Law; Credit Transactions; Guaranty "
"Civil Law; Credit Transactions; Pledge"
"Civil Law; Credit Transactions; Mortgage"
"Civil Law; Credit Transactions; Mortgage; Application of good faith doctrine to innocent purchasers for value"
"Civil Law; Credit Transactions; Antichresis"
"Civil Law; Credit Transactions; Extra-Contractual Obligations "
"Civil Law; Credit Transactions; Concurrence and Preference of Credits "
"Civil Law; Credit Transactions; The Warehouse Receipts Law (Act No. 2137, as amended. Secs. 1-61) "
"Civil Law; Credit Transactions; The Insolvency Law (Act No. 1956, as amended, Secs. 1-84)"
"Civil Law; Credit Transactions; Interest"
"Civil Law; Credit Transactions; Interest; Compensatory interest"
"Civil Law; Credit Transactions; Interest; Compensatory interest; Distinguished from monetary interest"
"Civil Law; Credit Transactions; Interest; Compensatory interest; Imposition is not proper when obligor did not incur delay nor unjustifiably deny claim"
"Civil Law; Torts and Damages"
"Civil Law; Torts and Damages; Human Relations"
"Civil Law; Torts and Damages; Quasi-Delicts"
"Civil Law; Torts and Damages; Damages"
"Civil Law; Torts and Damages; Damages; Attorney's Fees"
"Civil Law; Torts and Damages; Damages; Attorney's Fees; Cannot be awarded without legal grounds"
"Civil Law; Torts and Damages; Damages; Exemplary Damages"
"Civil Law; Torts and Damages; Damages; Exemplary Damages; Authorized when at least one aggravating circumstance attended the commission of the crime"
"Civil Law; Torts and Damages; Damages; Moral Damages"
"Civil Law; Torts and Damages; Damages; Moral Damages; May be recovered when there is physical suffering, mental anguish, fright, serious anxiety, besmirched reputation, wounded feelings, moral shock, social humiliation and similar injury"
"Civil Law; Torts and Damages; Damages; Moral Damages; May be recovered if defendant acted fraudulently or in bad faith"
"Civil Law; Torts and Damages; Damages; Temperate Damages"
"Civil Law; Torts and Damages; Damages; Temperate Damages; May be recovered when some pecuniary loss has been suffered but cannot be proved with certainty"
"Civil Law; Torts and Damages; Nuisance"
"Civil Law; Conflict of Laws"
"Civil Law; Conflict of Laws; Sources of Private International Law "
"Civil Law; Conflict of Laws; Jurisdiction "
"Civil Law; Conflict of Laws; Application and Proof of Law "
"Civil Law; Conflict of Laws; Nature of Conflict Rules "
"Civil Law; Conflict of Laws; Choice of Law "
"Civil Law; Conflict of Laws; Foreign Judgments"
1 Civil Law
2 Civil Law; Effect and Application of Laws
3 Civil Law; Human Relations
4 Civil Law; Human Relations; Prejudicial Questions
5 Civil Law; Persons
6 Civil Law; Persons; Civil Personality
7 Civil Law; Persons; Civil Personality; General Provisions
8 Civil Law; Persons; Civil Personality; General Provisions; Juridical Capacity
9 Civil Law; Persons; Civil Personality; General Provisions; Restrictions on Capacity to Act
10 Civil Law; Persons; Civil Personality; Natural Persons
11 Civil Law; Persons; Civil Personality; Juridical Persons
12 Civil Law; Persons; Domicile and Residence
13 Civil Law; Persons; Citizenship and Naturalization
14 Civil Law; Persons; Citizenship and Naturalization; Citizens of the Philippines
15 Civil Law; Persons; Citizenship and Naturalization; Naturalization
16 Civil Law; Persons; The Family Code
17 Civil Law; Persons; Marriage
18 Civil Law; Persons; Marriage; Definition
19 Civil Law; Persons; Marriage; Essential Requisites
20 Civil Law; Persons; Marriage; Formal Requisites
21 Civil Law; Persons; Marriage; Formal Requisites; Authority of Solemnizing Officer
22 Civil Law; Persons; Marriage; Formal Requisites; Marriage License
23 Civil Law; Persons; Marriage; Formal Requisites; Marriage Ceremony
24 Civil Law; Persons; Marriage; Void and Voidable Marriages
25 Civil Law; Persons; Marriage; Void and Voidable Marriages; Marriages Void Ab Initio
26 Civil Law; Persons; Marriage; Void and Voidable Marriages; Voidable Marriages
27 Civil Law; Persons; Marriage; Void and Voidable Marriages; Action for Annulment or Declaration of Absolute Nullity of Marriage
28 Civil Law; Persons; Marriage; Legal Separation
29 Civil Law; Persons; Marriage; Legal Separation; Grounds
30 Civil Law; Persons; Marriage; Legal Separation; Grounds for Denial of Petition for Legal Separation
31 Civil Law; Persons; Marriage; Legal Separation; Action for Legal Separtion
32 Civil Law; Persons; Marriage; Rights and Obligations of Husband and Wife
33 Civil Law; Persons; Marriage; Property Relations Between Husband and Wife
34 Civil Law; Persons; Marriage; Property Relations Between Husband and Wife; Governing Law
35 Civil Law; Persons; Marriage; Property Relations Between Husband and Wife; Marriage Settlements
36 Civil Law; Persons; Marriage; Property Relations Between Husband and Wife; Donations by Reason of Marriage
37 Civil Law; Persons; Marriage; Property Relations Between Husband and Wife; System of Absolute Community
38 Civil Law; Persons; Marriage; Property Relations Between Husband and Wife; Conjugal Partnership of Gains
39 Civil Law; Persons; Marriage; Property Relations Between Husband and Wife; Separation of Property of the Spouses and Administration of Common Property by One Spouse During the Marriage
40 Civil Law; Persons; Marriage; Property Relations Between Husband and Wife; Regime of Separation of Property
41 Civil Law; Persons; Marriage; Property Relations Between Husband and Wife; Property Regime of Unions Without Marriage
42 Civil Law; Family
43 Civil Law; Family; The Family as an Institution
44 Civil Law; Family; Family Relations
45 Civil Law; Family; The Family Home
46 Civil Law; Paternity and Filiation
47 Civil Law; Paternity and Filiation; Natural Filiation
48 Civil Law; Paternity and Filiation; Natural Filiation; Legitimate Children
49 Civil Law; Paternity and Filiation; Natural Filiation; Legitimate Children; How Legitimacy May be Impugned
50 Civil Law; Paternity and Filiation; Natural Filiation; Legitimate Children; Proof of Filiation
51 Civil Law; Paternity and Filiation; Natural Filiation; Illegitimate Children
52 Civil Law; Paternity and Filiation; Natural Filiation; Legitimated Children
53 Civil Law; Paternity and Filiation; Adoption
54 Civil Law; Paternity and Filiation; Adoption; Who May Not Adopt
55 Civil Law; Paternity and Filiation; Adoption; Requirement for Husband and Wife to Jointly Adopt
56 Civil Law; Paternity and Filiation; Adoption; Who May Not be Adopted
57 Civil Law; Paternity and Filiation; Adoption; Written Consent for Adoption
58 Civil Law; Paternity and Filiation; Adoption; Effects of Adoption
59 Civil Law; Paternity and Filiation; Adoption; Legal or Intestate Succession to the Estate of the Adopted
60 Civil Law; Paternity and Filiation; Adoption; Judicial Rescission of Adoption
61 Civil Law; Support
62 Civil Law; Support; What It Includes
63 Civil Law; Support; Persons Obliged to Support Each Other
64 Civil Law; Support; Amount of Support
65 Civil Law; Funerals
66 Civil Law; Funerals; Duty and Right to Make Funeral Arrangements
67 Civil Law; Funerals; Funeral Rites
68 Civil Law; Parental Authority
69 Civil Law; Parental Authority; Exercise of Parental Authority
70 Civil Law; Parental Authority; Substitute and Special Parental Authority
71 Civil Law; Parental Authority; Effect of Parental Authority Upon the Persons of the Children
72 Civil Law; Parental Authority; Effect of Parental Authority Upon the Property of the Children
73 Civil Law; Parental Authority; Suspension or Termination of Parental Authority
74 Civil Law; Emancipation and Age of Majority
75 Civil Law; Emancipation and Age of Majority; Emancipation
76 Civil Law; Summary Judicial Proceedings in Family Law
77 Civil Law; Summary Judicial Proceedings in Family Law; Separation in Fact Between Husband and Wife
78 Civil Law; Summary Judicial Proceedings in Family Law; Incidents Involving Parental Authority
79 Civil Law; Summary Judicial Proceedings in Family Law; Other Matters Subject to Summary Proceedings
80 Civil Law; Surname
81 Civil Law; Surname; Use of Surnames
82 Civil Law; Surname; Use of Surnames; Children
83 Civil Law; Surname; Use of Surnames; Married Woman
84 Civil Law; Surname; Change of Name
85 Civil Law; Surname; Usurpation of Name or Surname
86 Civil Law; Surname; Unauthorized or Unlawful Use of Another's Surname
87 Civil Law; Surname; Employment of Pen or Stage Names
88 Civil Law; Absence
89 Civil Law; Absence; Provisional Measures in Case of Absence
90 Civil Law; Absence; Declaration of Absence
91 Civil Law; Absence; Administration of Property of Absentee
92 Civil Law; Absence; Presumption of Death
93 Civil Law; Absence; Effect of Absence Upon Contingent Rights of the Absentee
94 Civil Law; Civil Register
95 Civil Law; Civil Register; What Must be Entered in the Civil Register
96 Civil Law; Civil Register; Responsibility of Civil Registrar
97 Civil Law; Civil Register; Change or Correction of Entries
98 Civil Law; Property
99 Civil Law; Property; Classification of Property
100 Civil Law; Property; Classification of Property; Immovable or Real Property
101 Civil Law; Property; Classification of Property; Movable Property
102 Civil Law; Property; Property in Relation to Whom It Belongs
103 Civil Law; Property; Property in Relation to Whom It Belongs; Property of Public Dominion
104 Civil Law; Property; Property in Relation to Whom It Belongs; Private Property
105 Civil Law; Property; Ownership
106 Civil Law; Property; Ownership; Rights and Obligations of An Owner
107 Civil Law; Property; Ownership; Hidden Treasure
108 Civil Law; Property; Ownership; Rights of Accession
109 Civil Law; Property; Ownership; Rights of Accession; With Respect to What is Produced by Property
110 Civil Law; Property; Ownership; Rights of Accession; With Respect to Immovable Property
111 Civil Law; Property; Ownership; Rights of Accession; With Respect to Movable Property
112 Civil Law; Property; Ownership; Quieting of Title
113 Civil Law; Property; Ownership; Ruinous Buildings and Trees in Danger of Falling
114 Civil Law; Property; Co-ownership
115 Civil Law; Property; Co-ownership; Pro indiviso share
116 Civil Law; Property; Co-ownership; Pro indiviso share; Undivided thing or right belong to different persons, with each holding the property pro indiviso
117 Civil Law; Property; Co-ownership; Pro indiviso share; Sale by co-owner transfers only the seller's pro-indiviso share
118 Civil Law; Property; Co-ownership; Pro indiviso share; Buyer of pro indiviso share becomes a co-owner of property until the same is partitioned
119 Civil Law; Property; Some Special Properties
120 Civil Law; Property; Some Special Properties; Waters
121 Civil Law; Property; Some Special Properties; Waters; Ownership of Waters
122 Civil Law; Property; Possession
123 Civil Law; Property; Usufruct
124 Civil Law; Property; Easements or Servitudes
125 Civil Law; Property; Nuisance
126 Civil Law; Property; Registry of Property
127 Civil Law; Property; Different Modes of Acquiring Ownership
128 Civil Law; Property; Different Modes of Acquiring Ownership; Succession
129 Civil Law; Property; Different Modes of Acquiring Ownership; Succession; Partition and distribution of estate
130 Civil Law; Land Titles and Deeds
131 Civil Law; Land Titles and Deeds; Organic Laws
132 Civil Law; Land Titles and Deeds; Titling of Ancestral Lands and Ancestral Domains
133 Civil Law; Land Titles and Deeds; Title
134 Civil Law; Land Titles and Deeds; Commonwealth Act No. 141, as amended (The Public Land Act)
135 Civil Law; Land Titles and Deeds; Registration of Land Ownership
136 Civil Law; Land Titles and Deeds; Dealings in Registered Land
137 Civil Law; Land Titles and Deeds; Decree of Registration
138 Civil Law; Land Titles and Deeds; Certificates of Title
139 Civil Law; Land Titles and Deeds; Proceedings After Registration
140 Civil Law; Land Titles and Deeds; Administration of Land Registration
141 Civil Law; Land Titles and Deeds; Forms of Acknowledgments and Deeds
142 Civil Law; Land Titles and Deeds; Tax Liabilities Relevant to Land Registration
143 Civil Law; Land Titles and Deeds; Special Laws on Condominiums
144 Civil Law; Wills and Succession
145 Civil Law; Wills and Succession; General Provisions
146 Civil Law; Wills and Succession; Testamentary Succession
147 Civil Law; Wills and Succession; Legal or Intestate Succession
148 Civil Law; Wills and Succession; Provisions Common to Testate and Intestate Successions
149 Civil Law; Obligations and Contracts
150 Civil Law; Obligations and Contracts; Obligations — General Provisions
151 Civil Law; Obligations and Contracts; Nature and Effect of Obligations
152 Civil Law; Obligations and Contracts; Different Kinds of Obligations
153 Civil Law; Obligations and Contracts; Extinguishment of Obligations
154 Civil Law; Obligations and Contracts; Contracts — General Provisions
155 Civil Law; Obligations and Contracts; Essential Requisites of Contracts
156 Civil Law; Obligations and Contracts; Form of Contracts
157 Civil Law; Obligations and Contracts; Reformation of Instruments
158 Civil Law; Obligations and Contracts; Interpretation of Contracts
159 Civil Law; Obligations and Contracts; Interpretation of Contracts; Cannot be in favor of party causing the confusion
160 Civil Law; Obligations and Contracts; Classes of Defective Contracts
161 Civil Law; Obligations and Contracts; Natural Obligations
162 Civil Law; Obligations and Contracts; Estoppel
163 Civil Law; Obligations and Contracts; Trusts
164 Civil Law; Sales
165 Civil Law; Sales; Nature and Form of the Contract
166 Civil Law; Sales; Capacity to Buy or Sell
167 Civil Law; Sales; Effects of the Contract when the Thing Sold Has Been Lost
168 Civil Law; Sales; Obligations of the Vendor
169 Civil Law; Sales; Obligations of the Vendee
170 Civil Law; Sales; Breach of Contract of Sale
171 Civil Law; Sales; Extinguishment of Sale
172 Civil Law; Sales; Assignment of Credits and Other Incorporeal Rights
173 Civil Law; Lease
174 Civil Law; Lease; General Provisions
175 Civil Law; Lease; Lease of Rural and Urban Lands
176 Civil Law; Lease; General Provisions
177 Civil Law; Lease; Rights and Obligations of the Lessor and the Lessee
178 Civil Law; Lease; Special Provisions for Leases of Rural Lands
179 Civil Law; Lease; Special Provisions for the Lease of Urban Lands
180 Civil Law; Lease; Work and Labor
181 Civil Law; Partnership and Agency
182 Civil Law; Partnership and Agency; General Provisions
183 Civil Law; Partnership and Agency; Obligations of the Partners
184 Civil Law; Partnership and Agency; Dissolution and Winding Up
185 Civil Law; Partnership and Agency; Limited Partnership
186 Civil Law; Partnership and Agency; Nature, Form and Kinds of Agency
187 Civil Law; Partnership and Agency; Obligations of the Agent
188 Civil Law; Partnership and Agency; Obligations of the Principal
189 Civil Law; Partnership and Agency; Modes of Extinguishment of Agency
190 Civil Law; Credit Transactions
191 Civil Law; Credit Transactions; Loan
192 Civil Law; Credit Transactions; Deposit
193 Civil Law; Credit Transactions; Guaranty
194 Civil Law; Credit Transactions; Pledge
195 Civil Law; Credit Transactions; Mortgage
196 Civil Law; Credit Transactions; Mortgage; Application of good faith doctrine to innocent purchasers for value
197 Civil Law; Credit Transactions; Antichresis
198 Civil Law; Credit Transactions; Extra-Contractual Obligations
199 Civil Law; Credit Transactions; Concurrence and Preference of Credits
200 Civil Law; Credit Transactions; The Warehouse Receipts Law (Act No. 2137, as amended. Secs. 1-61)
201 Civil Law; Credit Transactions; The Insolvency Law (Act No. 1956, as amended, Secs. 1-84)
202 Civil Law; Credit Transactions; Interest
203 Civil Law; Credit Transactions; Interest; Compensatory interest
204 Civil Law; Credit Transactions; Interest; Compensatory interest; Distinguished from monetary interest
205 Civil Law; Credit Transactions; Interest; Compensatory interest; Imposition is not proper when obligor did not incur delay nor unjustifiably deny claim
206 Civil Law; Torts and Damages
207 Civil Law; Torts and Damages; Human Relations
208 Civil Law; Torts and Damages; Quasi-Delicts
209 Civil Law; Torts and Damages; Damages
210 Civil Law; Torts and Damages; Damages; Attorney's Fees
211 Civil Law; Torts and Damages; Damages; Attorney's Fees; Cannot be awarded without legal grounds
212 Civil Law; Torts and Damages; Damages; Exemplary Damages
213 Civil Law; Torts and Damages; Damages; Exemplary Damages; Authorized when at least one aggravating circumstance attended the commission of the crime
214 Civil Law; Torts and Damages; Damages; Moral Damages
215 Civil Law; Torts and Damages; Damages; Moral Damages; May be recovered when there is physical suffering, mental anguish, fright, serious anxiety, besmirched reputation, wounded feelings, moral shock, social humiliation and similar injury
216 Civil Law; Torts and Damages; Damages; Moral Damages; May be recovered if defendant acted fraudulently or in bad faith
217 Civil Law; Torts and Damages; Damages; Temperate Damages
218 Civil Law; Torts and Damages; Damages; Temperate Damages; May be recovered when some pecuniary loss has been suffered but cannot be proved with certainty
219 Civil Law; Torts and Damages; Nuisance
220 Civil Law; Conflict of Laws
221 Civil Law; Conflict of Laws; Sources of Private International Law
222 Civil Law; Conflict of Laws; Jurisdiction
223 Civil Law; Conflict of Laws; Application and Proof of Law
224 Civil Law; Conflict of Laws; Nature of Conflict Rules
225 Civil Law; Conflict of Laws; Choice of Law
226 Civil Law; Conflict of Laws; Foreign Judgments

84
data/csvs/commercial.csv

@ -0,0 +1,84 @@
"Commercial Law"
"Commercial Law; Anti-Money Laundering"
"Commercial Law; Banking Law; In General"
"Commercial Law; Banking Law; The New Central Bank Act"
"Commercial Law; Consumer Protection"
"Commercial Law; Cooperatives"
"Commercial Law; Corporation Law; Appraisal Right "
"Commercial Law; Corporation Law; Board of Directors/Trustees/Officers "
"Commercial Law; Corporation Law; By-Laws "
"Commercial Law; Corporation Law; Close Corporations"
"Commercial Law; Corporation Law; Corporate Books and Records "
"Commercial Law; Corporation Law; Corporate Rehabilitation "
"Commercial Law; Corporation Law; Dissolution"
"Commercial Law; Corporation Law; Distribution of Assets in Non-Stock Corporations "
"Commercial Law; Corporation Law; Financing and Lending "
"Commercial Law; Corporation Law; Foreign Corporations "
"Commercial Law; Corporation Law; General Provisions"
"Commercial Law; Corporation Law; Incorporation and Organization of Private Corporations "
"Commercial Law; Corporation Law; Insolvency"
"Commercial Law; Corporation Law; Intra-Corporate Disputes "
"Commercial Law; Corporation Law; Lending Companies"
"Commercial Law; Corporation Law; Meetings "
"Commercial Law; Corporation Law; Members"
"Commercial Law; Corporation Law; Merger and Consolidation "
"Commercial Law; Corporation Law; Miscellaneous Provisions "
"Commercial Law; Corporation Law; Non-Stock Corporations "
"Commercial Law; Corporation Law; Powers and Liabilities of Corporations "
"Commercial Law; Corporation Law; Securities "
"Commercial Law; Corporation Law; Securities and Exchange Commission"
"Commercial Law; Corporation Law; Special Corporations"
"Commercial Law; Corporation Law; Stocks and Stockholders "
"Commercial Law; Corporation Law; Stocks and Stockholders; Right of First Refusal"
"Commercial Law; Corporation Law; Trustees and Officers"
"Commercial Law; Extra-judicial Foreclosure of Mortgage"
"Commercial Law; Insurance Law; Action by An Insurer"
"Commercial Law; Insurance Law; Compulsory Motor Vehicle Liability Insurance"
"Commercial Law; Insurance Law; Contract of Insurance"
"Commercial Law; Insurance Law; Contract of Insurance; Insurable Interests"
"Commercial Law; Insurance Law; Contract of Insurance; Insurable Risks"
"Commercial Law; Insurance Law; Estoppel"
"Commercial Law; Insurance Law; In General"
"Commercial Law; Insurance Law; Insurance Commission; Powers and Functions"
"Commercial Law; Insurance Law; Life Insurance"
"Commercial Law; Insurance Law; Life Insurance; Claims During Grace Period"
"Commercial Law; Insurance Law; Mutual Benefit Associations and Trusts for Charitable Uses "
"Commercial Law; Insurance Law; Non-life Insurance"
"Commercial Law; Insurance Law; Pre-Need Industry"
"Commercial Law; Insurance Law; Sales Agencies and Technical Services "
"Commercial Law; Insurance Law; Security Fund "
"Commercial Law; Insurance Law; The Business of Insurance"
"Commercial Law; Intellectual Property Law; Copyright Law"
"Commercial Law; Intellectual Property Law; In General"
"Commercial Law; Intellectual Property Law; Patents Law"
"Commercial Law; Intellectual Property Law; The Intellectual Property Code of the Philippines (Rep. ActNo. 8293)"
"Commercial Law; Intellectual Property Law; Trademarks, Service Marks, and Trade Names"
"Commercial Law; Negotiable Instruments Law; In General "
"Commercial Law; Negotiable Instruments; Acceptance for Honor "
"Commercial Law; Negotiable Instruments Law; Bills in Set "
"Commercial Law; Negotiable Instruments Law; Bills of Exchange "
"Commercial Law; Negotiable Instruments Law; Consideration "
"Commercial Law; Negotiable Instruments Law; Discharge of Negotiable Instrument "
"Commercial Law; Negotiable Instruments Law; General Provisions"
"Commercial Law; Negotiable Instruments Law; Liabilities of Parties "
"Commercial Law; Negotiable Instruments Law; Negotiation "
"Commercial Law; Negotiable Instruments Law; Notice of Dishonor "
"Commercial Law; Negotiable Instruments Law; Payment for Honor "
"Commercial Law; Negotiable Instruments Law; Presentment for Acceptance "
"Commercial Law; Negotiable Instruments Law; Presentment for Payment "
"Commercial Law; Negotiable Instruments Law; Promissory Notes and Checks "
"Commercial Law; Negotiable Instruments Law; Protest"
"Commercial Law; Negotiable Instruments Law; Rights of the Holder "
"Commercial Law; Real Estate Investment Trust"
"Commercial Law; Retail Trade"
"Commercial Law; Securitization"
"Commercial Law; Transportation Law; Common Carriers"
"Commercial Law; Transportation Law; Common Provisions"
"Commercial Law; Transportation Law; In General"
"Commercial Law; Transportation Law; Maritime Law and Admiralty"
"Commercial Law; Transportation Law; Maritime Law and Admiralty; Charter Parties"
"Commercial Law; Transportation Law; Safety of Passengers"
"Commercial Law; Transportation Law; Special Purpose Vehicles"
"Commercial Law; Transportation Law; The Public Service Act"
"Commercial Law; Transportation Law; The Public Service Act; Franchising"
"Commercial Law; Transportation Law; Vigilance Over Goods"
1 Commercial Law
2 Commercial Law; Anti-Money Laundering
3 Commercial Law; Banking Law; In General
4 Commercial Law; Banking Law; The New Central Bank Act
5 Commercial Law; Consumer Protection
6 Commercial Law; Cooperatives
7 Commercial Law; Corporation Law; Appraisal Right
8 Commercial Law; Corporation Law; Board of Directors/Trustees/Officers
9 Commercial Law; Corporation Law; By-Laws
10 Commercial Law; Corporation Law; Close Corporations
11 Commercial Law; Corporation Law; Corporate Books and Records
12 Commercial Law; Corporation Law; Corporate Rehabilitation
13 Commercial Law; Corporation Law; Dissolution
14 Commercial Law; Corporation Law; Distribution of Assets in Non-Stock Corporations
15 Commercial Law; Corporation Law; Financing and Lending
16 Commercial Law; Corporation Law; Foreign Corporations
17 Commercial Law; Corporation Law; General Provisions
18 Commercial Law; Corporation Law; Incorporation and Organization of Private Corporations
19 Commercial Law; Corporation Law; Insolvency
20 Commercial Law; Corporation Law; Intra-Corporate Disputes
21 Commercial Law; Corporation Law; Lending Companies
22 Commercial Law; Corporation Law; Meetings
23 Commercial Law; Corporation Law; Members
24 Commercial Law; Corporation Law; Merger and Consolidation
25 Commercial Law; Corporation Law; Miscellaneous Provisions
26 Commercial Law; Corporation Law; Non-Stock Corporations
27 Commercial Law; Corporation Law; Powers and Liabilities of Corporations
28 Commercial Law; Corporation Law; Securities
29 Commercial Law; Corporation Law; Securities and Exchange Commission
30 Commercial Law; Corporation Law; Special Corporations
31 Commercial Law; Corporation Law; Stocks and Stockholders
32 Commercial Law; Corporation Law; Stocks and Stockholders; Right of First Refusal
33 Commercial Law; Corporation Law; Trustees and Officers
34 Commercial Law; Extra-judicial Foreclosure of Mortgage
35 Commercial Law; Insurance Law; Action by An Insurer
36 Commercial Law; Insurance Law; Compulsory Motor Vehicle Liability Insurance
37 Commercial Law; Insurance Law; Contract of Insurance
38 Commercial Law; Insurance Law; Contract of Insurance; Insurable Interests
39 Commercial Law; Insurance Law; Contract of Insurance; Insurable Risks
40 Commercial Law; Insurance Law; Estoppel
41 Commercial Law; Insurance Law; In General
42 Commercial Law; Insurance Law; Insurance Commission; Powers and Functions
43 Commercial Law; Insurance Law; Life Insurance
44 Commercial Law; Insurance Law; Life Insurance; Claims During Grace Period
45 Commercial Law; Insurance Law; Mutual Benefit Associations and Trusts for Charitable Uses
46 Commercial Law; Insurance Law; Non-life Insurance
47 Commercial Law; Insurance Law; Pre-Need Industry
48 Commercial Law; Insurance Law; Sales Agencies and Technical Services
49 Commercial Law; Insurance Law; Security Fund
50 Commercial Law; Insurance Law; The Business of Insurance
51 Commercial Law; Intellectual Property Law; Copyright Law
52 Commercial Law; Intellectual Property Law; In General
53 Commercial Law; Intellectual Property Law; Patents Law
54 Commercial Law; Intellectual Property Law; The Intellectual Property Code of the Philippines (Rep. ActNo. 8293)
55 Commercial Law; Intellectual Property Law; Trademarks, Service Marks, and Trade Names
56 Commercial Law; Negotiable Instruments Law; In General
57 Commercial Law; Negotiable Instruments; Acceptance for Honor
58 Commercial Law; Negotiable Instruments Law; Bills in Set
59 Commercial Law; Negotiable Instruments Law; Bills of Exchange
60 Commercial Law; Negotiable Instruments Law; Consideration
61 Commercial Law; Negotiable Instruments Law; Discharge of Negotiable Instrument
62 Commercial Law; Negotiable Instruments Law; General Provisions
63 Commercial Law; Negotiable Instruments Law; Liabilities of Parties
64 Commercial Law; Negotiable Instruments Law; Negotiation
65 Commercial Law; Negotiable Instruments Law; Notice of Dishonor
66 Commercial Law; Negotiable Instruments Law; Payment for Honor
67 Commercial Law; Negotiable Instruments Law; Presentment for Acceptance
68 Commercial Law; Negotiable Instruments Law; Presentment for Payment
69 Commercial Law; Negotiable Instruments Law; Promissory Notes and Checks
70 Commercial Law; Negotiable Instruments Law; Protest
71 Commercial Law; Negotiable Instruments Law; Rights of the Holder
72 Commercial Law; Real Estate Investment Trust
73 Commercial Law; Retail Trade
74 Commercial Law; Securitization
75 Commercial Law; Transportation Law; Common Carriers
76 Commercial Law; Transportation Law; Common Provisions
77 Commercial Law; Transportation Law; In General
78 Commercial Law; Transportation Law; Maritime Law and Admiralty
79 Commercial Law; Transportation Law; Maritime Law and Admiralty; Charter Parties
80 Commercial Law; Transportation Law; Safety of Passengers
81 Commercial Law; Transportation Law; Special Purpose Vehicles
82 Commercial Law; Transportation Law; The Public Service Act
83 Commercial Law; Transportation Law; The Public Service Act; Franchising
84 Commercial Law; Transportation Law; Vigilance Over Goods

553
data/csvs/criminal.csv

@ -0,0 +1,553 @@
"Criminal Law"
"Criminal Law; Felonies; Definition"
"Criminal Law; Felonies; Deceit"
"Criminal Law; Felonies; Fault"
"Criminal Law; Felonies; Criminal Liability"
"Criminal Law; Felonies; Stages of Commission; Consummated Felony"
"Criminal Law; Felonies; Stages of Commission; Frustrated Felony"
"Criminal Law; Felonies; Stages of Commission; Attempted Felony"
"Criminal Law; Felonies; Conspiracy"
"Criminal Law; Felonies; Proposal"
"Criminal Law; Felonies; Types of Felonies"
"Criminal Law; Felonies; Types of Felonies; Grave Felonies"
"Criminal Law; Felonies; Types of Felonies; Less Grave Felonies"
"Criminal Law; Felonies; Types of Felonies; Light Felonies"
"Criminal Law; Justifying Circumstances"
"Criminal Law; Justifying Circumstances; Self-defense"
"Criminal Law; Justifying Circumstances; Self-defense; Unlawful Aggression"
"Criminal Law; Justifying Circumstances; Self-defense; Reasonable Necessity of Means Employed to Prevent or Repel It"
"Criminal Law; Justifying Circumstances; Self-defense; Lack of Sufficient Provocation on the Part of the Person Defending Himself"
"Criminal Law; Justifying Circumstances; Defense of Relatives"
"Criminal Law; Justifying Circumstances; Defense of Relatives; Unlawful Aggression"
"Criminal Law; Justifying Circumstances; Defense of Relatives; Unlawful Aggression; Reasonable Necessity of Means Employed to Prevent or Repel It"
"Criminal Law; Justifying Circumstances; Defense of Relatives; Unlawful Aggression; In Case Provocation Was Given by Person Attacked"
"Criminal Law; Justifying Circumstances; Defense of Strangers"
"Criminal Law; Justifying Circumstances; Defense of Strangers; Unlawful Aggression"
"Criminal Law; Justifying Circumstances; Defense of Strangers; Reasonable Necessity of Means employed to Prevent or Repel It"
"Criminal Law; Justifying Circumstances; Defense of Strangers; The Person Defending Be Not Induced by Revenege, Resentment or Other Evil Motive"
"Criminal Law; Justifying Circumstances; State of Necessity"
"Criminal Law; Justifying Circumstances; State of Necessity; Evil Sought to Be Avoided Actually Exists"
"Criminal Law; Justifying Circumstances; State of Necessity; Injury Feared Greater Than That Done to Avoid It"
"Criminal Law; Justifying Circumstances; State of Necessity; No Other Practical and Less Harmful Means of Preventing It"
"Criminal Law; Justifying Circumstances; Fulfillment of Duty"
"Criminal Law; Justifying Circumstances; Lawful Exercise of a Right"
"Criminal Law; Justifying Circumstances; Obedience to a Lawful Order Issued by a Superior"
"Criminal Law; Exempting Circumstances"
"Criminal Law; Exempting Circumstances; Imbecility"
"Criminal Law; Exempting Circumstances; Insanity "
"Criminal Law; Exempting Circumstances; Insanity; Lucid Interval"
"Criminal Law; Exempting Circumstances; Minority Under 9 Years of Age"
"Criminal Law; Exempting Circumstances; Minority Over 9 But Under 15 Years of Age"
"Criminal Law; Exempting Circumstances; Accident"
"Criminal Law; Exempting Circumstances; Compulsion of an Irresistible Force"
"Criminal Law; Exempting Circumstances; Impulse of an Uncontrollable Fear of an Equal or Greater Injury"
"Criminal Law; Exempting Circumstances; Lawful or Insuperable Cause"
"Criminal Law; Mitigating Circumstances"
"Criminal Law; Mitigating Circumstances; Incomplete Justifying or Exempting"
"Criminal Law; Mitigating Circumstances; Offender is Under 18 or Over 70 Years of Age"
"Criminal Law; Mitigating Circumstances: No Intention to Commit So Grave a Wrong"
"Criminal Law; Mitigating Circumstances; Sufficient Provocation by Offended Party"
"Criminal Law; Mitigating Circumstances; Immediate Vindication of a Grave Offense"
"Criminal Law; Mitigating Circumstances; Passion or Obfuscation"
"Criminal Law; Mitigating Circumstances; Voluntary Surrender"
"Criminal Law; Mitigating Circumstances; Voluntary Confession"
"Criminal Law; Mitigating Circumstances; Offender Has a Physical Defect Which Restricts His Means of Action, Defense, or Communication With Fellow Beings (Deaf, Dumb, or Blind)"
"Criminal Law; Mitigating Circumstances; Illness of the Offender as Would Diminish Willpower Without Depriving Him of Consciousness of His Acts"
"Criminal Law; Mitigating Circumstances; Circumstances Analogous to Other Mitigating Circumstances"
"Criminal Law; Aggravating Circumstances"
"Criminal Law; Aggravating Circumstances; Taking Advantage of Public Position"
"Criminal Law; Aggravating Circumstances; In Contempt of or With Insult to Public Authorities"
"Criminal Law; Aggravating Circumstances; With Insult or in Disregard Due to the Offended Party on Account of His Rank, Age or Sex"
"Criminal Law; Aggravating Circumstances; In the Dwelling of the Offended Party, if the Latter Has Not Given Provocation"
"Criminal Law; Aggravating Circumstances; With Abuse of Confidence or Obvious Ungratefulness"
"Criminal Law; Aggravating Circumstances; In the Palace of the Chief Executive"
"Criminal Law; Aggravating Circumstances; In the Presence of the Chief Executive"
"Criminal Law; Aggravating Circumstances; Where Public Authorities are Engaged in the Discharge of Their Duties"
"Criminal Law; Aggravating Circumstances; In a Place Dedicated to Religious Worship"
"Criminal Law; Aggravating Circumstances; Nighttime"
"Criminal Law; Aggravating Circumstances; In an Uninhabited Place"
"Criminal Law; Aggravating Circumstances; By a Band"
"Criminal Law; Aggravating Circumstances; On the Occasion of a Conflagration"
"Criminal Law; Aggravating Circumstances; On the Occasion of a Shipwreck"
"Criminal Law; Aggravating Circumstances; On the Occasion of an Earthquake"
"Criminal Law; Aggravating Circumstances; On the Occasion of an Epidemic "
"Criminal Law; Aggravating Circumstances; On the Occasion of a Calamity or Misfortune"
"Criminal Law; Aggravating Circumstances; With the Aid of Armed Men or Persons Who Insure or Afford Impunity"
"Criminal Law; Aggravating Circumstances; Recidivism"
"Criminal Law; Aggravating Circumstances; Offender Has Previously Been Punished for an Offense to Which the Law Attaches an Equal or Greater Penalty"
"Criminal Law; Aggravating Circumstances; Offender Has Previously Been Punished for Two or More Crimes to Which It Attaches a Lighter Penalty"
"Criminal Law; Aggravating Circumstances; In Consideration of a Price, Reward or Promise"
"Criminal Law; Aggravating Circumstances; By Means of Inundation, Fire, Poison, Explosion, Stranding of a Vessel or Intentional Damage Thereto, Derailment of a Locomotive, or by the Use of Any Other Artifice Involving Great Waste and Ruin"
"Criminal Law; Aggravating Circumstances; With Evident Premeditation"
"Criminal Law; Aggravating Circumstances; Employing Craft, Fraud, or Disguise"
"Criminal Law; Aggravating Circumstances; Taking Advantage of Superior Strength "
"Criminal Law; Aggravating Circumstances; Employing Means to Weaken the Defense"
"Criminal Law; Aggravating Circumstances; Treachery"
"Criminal Law; Aggravating Circumstances; Ignominy"
"Criminal Law; Aggravating Circumstances; After an Unlawful Entry"
"Criminal Law; Aggravating Circumstances; By Breaking a Wall, Roof, Floor, Door, or Window"
"Criminal Law; Aggravating Circumstances; With the Aid of Persons Under 15 Years of Age or By Means of Motor Vehicles, Motorized Watercraft, Airships, or Other Similar Means"
"Criminal Law; Aggravating Circumstances; Causing Another Wrong Not Necessary for Its Commission"
"Criminal Law; Alternative Circumstances"
"Criminal Law; Alternative Circumstances; Relationship"
"Criminal Law; Alternative Circumstances; Intoxication"
"Criminal Law; Alternative Circumstances; Degree of Instruction and Education of the Offender"
"Criminal Law; Persons Criminally Liable"
"Criminal Law; Criminal Liability; Who Are Criminally Liable"
"Criminal Law; Criminal Liability; Who Are Criminally Liable; Principals"
"Criminal Law; Criminal Liability; Who Are Criminally Liable; Accomplices"
"Criminal Law; Criminal Liability; Who Are Criminally Liable; Accessories"
"Criminal Law; Criminal Liability; Accessories Exempt from Criminal Liability"
"Criminal Law; Penalties"
"Criminal Law; Penalties; In General"
"Criminal Law; Penalties; Imposable Penalties"
"Criminal Law; Penalties; Retroactive Effect of Penal Laws"
"Criminal Law; Penalties; Effect of Pardon by Offended Party"
"Criminal Law; Penalties; Measures of Prevention or Safety"
"Criminal Law; Penalties; Classification of Penalties"
"Criminal Law; Penalties; Classification of Penalties; Principal Penalties"
"Criminal Law; Penalties; Classification of Penalties; Principal Penalties; Capital Punishment"
"Criminal Law; Penalties; Classification of Penalties; Principal Penalties; Afflictive Penalties"
"Criminal Law; Penalties; Classification of Penalties; Principal Penalties; Correctional Penalties"
"Criminal Law; Penalties; Classification of Penalties; Principal Penalties; Light Penalties"
"Criminal Law; Penalties; Classification of Penalties; Principal Penalties; Common Penalties"
"Criminal Law; Penalties; Classification of Penalties; Accessory Penalties"
"Criminal Law; Penalties; Classification of Penalties; Fines"
"Criminal Law; Penalties; Duration and Effect of Penalties"
"Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties"
"Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties; Reclusion Perpetua"
"Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties; Reclusion Temporal"
"Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties; Prision Mayor and Temporary Disqualification"
"Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties; Prision Correccional"
"Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties; Suspension"
"Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties; Destierro"
"Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties; Arresto Mayor"
"Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties; Arresto Menor"
"Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties; Bond to Keep the Peace"
"Criminal Law; Penalties; Duration and Effect of Penalties; Computation of Penalties"
"Criminal Law; Penalties; Duration and Effect of Penalties; Period of Preventive Suspension Deducted From Term of Imprisonment
"
"Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature"
"Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature; Perpetual or Temporary Absolute Disqualification"
"Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature; Perpetual or Temporary Special Disqualification"
"Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature; Perpetual or Temporary Special Disqualification for the Exercise of the Right of Suffrage"
"Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature; Suspension From Any Public Office, Profession, or Calling, or the Right of Suffrage"
"Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature; Civil Interdiction"
"Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature; Bond to Keep the Peace"
"Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature"
"Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature; Costs"
"Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature; Pecuniary Liabilities"
"Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature; Subsidiary Penalty"
"Criminal Law; Penalties; Duration and Effect of Penalties; Penalties in Which Other Accessory Penalties are Inherent"
"Criminal Law; Penalties; Duration and Effect of Penalties; Penalties in Which Other Accessory Penalties are Inherent; Death And Its Accessory Penalties"
"Criminal Law; Penalties; Duration and Effect of Penalties; Penalties in Which Other Accessory Penalties are Inherent; Reclusion Perpetua and Reclusion Temporal and its Accessory Penalties"
"Criminal Law; Penalties; Duration and Effect of Penalties; Penalties in Which Other Accessory Penalties are Inherent; Prision Mayor and its Accessory Penalties"
"Criminal Law; Penalties; Duration and Effect of Penalties; Penalties in Which Other Accessory Penalties are Inherent; Prision Correccional and its Accessory Penalties"
"Criminal Law; Penalties; Duration and Effect of Penalties; Penalties in Which Other Accessory Penalties are Inherent; Arresto and its Accessory Penalties"
"Criminal Law; Penalties; Duration and Effect of Penalties; Penalties in Which Other Accessory Penalties are Inherent; Confiscation and Forfeiture of the Proceeds or Instruments of the Crime"
"Criminal Law; Penalties; Application of Penalties"
"Criminal Law; Penalties; Application of Penalties; Penalties to be Imposed on Principals in General"
"Criminal Law; Penalties; Application of Penalties; In What Cases The Death Penalty Shall Not Be Imposed; Automatic Review of Death Penalty Cases"
"Criminal Law; Penalties; Application of Penalties; Penalty For Complex Crimes"
"Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon Principals When the Crime Committed Is Different From That Intended"
"Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon Principals of a Frustrated Crime"
"Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon Principals of an Attempted Crime"
"Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon Accomplices in a Consummated Crime"
"Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon Accessories to the Commission of a Consummated Crime"
"Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon Accomplices in a Frustrated Crime"
"Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon Accessories of a Frustrated Crime"
"Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon Accomplices in an Attempted Crime"
"Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon Accessories of an Attempted Crime"
"Criminal Law; Penalties; Application of Penalties; Additional Penalty to Be Imposed Upon Certain Accessories"
"Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed in Case of Failure to Commit the Crime Because the Means Employed or the Aims Sought Are Impossible"
"Criminal Law; Penalties; Application of Penalties; Exceptions to the Rules Established in Articles 50 to 57"
"Criminal Law; Penalties; Application of Penalties; Rules for Graduating Penalties"
"Criminal Law; Penalties; Application of Penalties"
"Criminal Law; Penalties; Application of Penalties; Effects of the Attendance of Mitigating or Aggravating Circumstances and of Habitual Delinquency"
"Criminal Law; Penalties; Application of Penalties; Rules for the Application of Indivisible Penalties"
"Criminal Law; Penalties; Application of Penalties; Rules for the Application of Penalties Which Contain Three Periods"
"Criminal Law; Penalties; Application of Penalties; Rule in Cases in Which the Penalty is Not Composed of Three Periods"
"Criminal Law; Penalties; Application of Penalties; Imposition of Fines"
"Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed When Not All the Requisites of Exemption of the Fourth Circumstance of Article 12 are Present"
"Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon a Person Under Eighteen Years of Age"
"Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed When the Crime Committed is Not Wholly Excusable"
"Criminal Law; Penalties; Application of Penalties; Successive Service of Sentences; Exception"
"Criminal Law; Penalties; Application of Penalties; Graduated Scales"
"Criminal Law; Penalties; Application of Penalties; Preference in the Payment of the Civil Liabilities"
"Criminal Law; Penalties; Application of Penalties; Presumption in Regard to the Imposition of Accessory Penalties"
"Criminal Law; Penalties; Application of Penalties; Penalty Higher Than Reclusión Perpetua in Certain Cases"
"Criminal Law; Penalties; Application of Penalties; Increasing or Reducing the Penalty of Fine by One or More Degrees"
"Criminal Law; Penalties; Application of Penalties; Legal Period of Duration of Divisible Penalties"
"Criminal Law; Penalties; Application of Penalties; When the Penalty is a Complex One Composed of Three Distinct Penalties"
"Criminal Law; Penalties; Execution and Service of Penalties"
"Criminal Law; Penalties; Execution and Service of Penalties; In General"
"Criminal Law; Penalties; Execution and Service of Penalties; When and How a Penalty is to Be Executed"
"Criminal Law; Penalties; Execution and Service of Penalties; Suspension of the Execution and Service of the Penalties in Case of Insanity"
"Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties"
"Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; When and How the Death Penalty is to Be Executed"
"Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Notification and Execution of the Sentence and Assistance to the Culprit"
"Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Suspension of the Execution of the Death Sentence"
"Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Place of Execution and Persons Who May Witness the Same"
"Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Provision Relative to the Corpse of the Person Executed and its Burial"
"Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Reclusión Perpetua"
"Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Reclusión Temporal"
"Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Prisión Mayor"
"Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Prisión Correccional"
"Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Arresto Mayor"
"Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Destierro"
"Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Arresto Menor"
"Criminal Law; Extinction of Criminal Liability"
"Criminal Law; Extinction of Criminal Liability; Total Extinction of Criminal Liability"
"Criminal Law; Extinction of Criminal Liability; Total Extinction of Criminal Liability; Prescription of Crimes"
"Criminal Law; Extinction of Criminal Liability; Total Extinction of Criminal Liability; Prescription of Crimes; Computation of Prescription of Offenses"
"Criminal Law; Extinction of Criminal Liability; Total Extinction of Criminal Liability; Prescription of Penalties"
"Criminal Law; Extinction of Criminal Liability; Total Extinction of Criminal Liability; Prescription of Penalties; Computation of the Prescription of Penalties"
"Criminal Law; Extinction of Criminal Liability; Partial Extinction of Criminal Liability"
"Criminal Law; Extinction of Criminal Liability; Partial Extinction of Criminal Liability; Conditional Pardon"
"Criminal Law; Extinction of Criminal Liability; Partial Extinction of Criminal Liability; Conditional Pardon; Obligation Incurred by Person Granted Conditional Pardon"
"Criminal Law; Extinction of Criminal Liability; Partial Extinction of Criminal Liability; Commutation of Sentence"
"Criminal Law; Extinction of Criminal Liability; Partial Extinction of Criminal Liability; Commutation of Sentence; Effect of Commutation of Sentence"
"Criminal Law; Extinction of Criminal Liability; Partial Extinction of Criminal Liability; Allowance for Good Conduct"
"Criminal Law; Extinction of Criminal Liability; Partial Extinction of Criminal Liability; Allowance for Good Conduct; Special Time Allowance for Loyalty"
"Criminal Law; Extinction of Criminal Liability; Partial Extinction of Criminal Liability; Allowance for Good Conduct; Who Grants Time Allowances"
"Criminal Law; Civil Liability"
"Criminal Law; Civil Liability; Persons Civilly Liable for Felonies"
"Criminal Law; Civil Liability; Persons Civilly Liable for Felonies; Civil Liability of Person Guilty of Felony"
"Criminal Law; Civil Liability; Persons Civilly Liable for Felonies; Subsidiary Civil Liability of Innkeepers, Tavernkeepers and Proprietors of Establishments"
"Criminal Law; Civil Liability; Persons Civilly Liable for Felonies; Subsidiary Civil Liability of Other Persons"
"Criminal Law; Civil Liability; What Civil Liability Includes"
"Criminal Law; Civil Liability; What Civil Liability Includes; What is Included in Civil Liability"
"Criminal Law; Civil Liability; What Civil Liability Includes; What is Included in Civil Liability; Restitution"
"Criminal Law; Civil Liability; What Civil Liability Includes; What is Included in Civil Liability; Reparation of Damage Caused"
"Criminal Law; Civil Liability; What Civil Liability Includes; What is Included in Civil Liability; Indemnification for Consequential Damages"
"Criminal Law; Civil Liability; Obligation to Make Restoration, Reparation for Damages, or Indemnification for Consequential Damages and Action to Demand the Same"
"Criminal Law; Civil Liability; Obligation to Make Restoration, Reparation for Damages, or Indemnification for Consequential Damages and Action to Demand the Same; Share of Each Person Civilly Liable"
"Criminal Law; Civil Liability; Obligation to Make Restoration, Reparation for Damages, or Indemnification for Consequential Damages and Action to Demand the Same; Several and Subsidiary Liability of Principals, Accomplices, and Accessories of a Felony"
"Criminal Law; Civil Liability; Obligation to Make Restoration, Reparation for Damages, or Indemnification for Consequential Damages and Action to Demand the Same; Obligation to Make Restitution in Certain Cases"
"Criminal Law; Civil Liability; Extinction and Survival of Civil Liability"
"Criminal Law; Civil Liability; Extinction and Survival of Civil Liability; Extinction of Civil Liability"
"Criminal Law; Civil Liability; Extinction and Survival of Civil Liability; Obligation to Satisfy Civil Liability"
"Criminal Law; Crimes Against National Security and the Law of Nations"
"Criminal Law; Crimes Against National Security and the Law of Nations; Treason"
"Criminal Law; Crimes Against National Security and the Law of Nations; Conspiracy and Proposal to Commit Treason"
"Criminal Law; Crimes Against National Security and the Law of Nations; Misprision of Treason"
"Criminal Law; Crimes Against National Security and the Law of Nations; Espionage"
"Criminal Law; Crimes Against National Security and the Law of Nations; Inciting to War or Giving Motives for Reprisals"
"Criminal Law; Crimes Against National Security and the Law of Nations; Violation of Neutrality"
"Criminal Law; Crimes Against National Security and the Law of Nations; Correspondence with Hostile Country"
"Criminal Law; Crimes Against National Security and the Law of Nations; Flight to Enemy's Country"
"Criminal Law; Crimes Against National Security and the Law of Nations; Piracy in General"
"Criminal Law; Crimes Against National Security and the Law of Nations; Mutiny on the High Seas or in Philippine Waters"
"Criminal Law; Crimes Against National Security and the Law of Nations; Qualified Piracy"
"Criminal Law; Crimes Against the Fundamental Laws of the State"
"Criminal Law; Crimes Against the Fundamental Laws of the State; Arbitrary Detention"
"Criminal Law; Crimes Against the Fundamental Laws of the State; Delay in the Delivery of Detained Persons to the Proper Judicial Authorities"
"Criminal Law; Crimes Against the Fundamental Laws of the State; Delaying Release"
"Criminal Law; Crimes Against the Fundamental Laws of the State; Expulsion"
"Criminal Law; Crimes Against the Fundamental Laws of the State; Violation of Domicile"
"Criminal Law; Crimes Against the Fundamental Laws of the State; Search Warrants Maliciously Obtained and Abuse in the Service of Those Legally Obtained"
"Criminal Law; Crimes Against the Fundamental Laws of the State; Searching Domicile Without Witnesses"
"Criminal Law; Crimes Against the Fundamental Laws of the State; Prohibition, Interruption, and Dissolution of Peaceful Meetings"
"Criminal Law; Crimes Against the Fundamental Laws of the State; Interruption of Religious Worship"
"Criminal Law; Crimes Against the Fundamental Laws of the State; Offending the Religious Feelings"
"Criminal Law; Crimes Against Public Order"
"Criminal Law; Crimes Against Public Order; Rebellion or Insurrection; How Committed"
"Criminal Law; Crimes Against Public Order; Coup d'etat; How Committed"
"Criminal Law; Crimes Against Public Order; Penalty for Rebellion, Insurrection or Coup d'etat"
"Criminal Law; Crimes Against Public Order; Conspiracy and Proposal to Commit Coup d'etat"
"Criminal Law; Crimes Against Public Order; Conspiracy and Proposal to Commit Rebellion "
"Criminal Law; Crimes Against Public Order; Conspiracy and Proposal to Commit Insurrection"
"Criminal Law; Crimes Against Public Order; Disloyalty of Public Officers or Employees"
"Criminal Law; Crimes Against Public Order; Inciting to Rebellion or Insurrection"
"Criminal Law; Crimes Against Public Order; Sedition; How Committed"
"Criminal Law; Crimes Against Public Order; Penalty for Sedition"
"Criminal Law; Crimes Against Public Order; Conspiracy to Commit Sedition"
"Criminal Law; Crimes Against Public Order; Inciting to Sedition"
"Criminal Law; Crimes Against Public Order; Cases Where Other Offenses Are Committed"
"Criminal Law; Crimes Against Public Order; Acts Tending to Prevent the Meeting of the Legislature and Similar Bodies"
"Criminal Law; Crimes Against Public Order; Disturbance of Proceedings"
"Criminal Law; Crimes Against Public Order; Violation of Parliamentary Immunity"
"Criminal Law; Crimes Against Public Order; Illegal Assemblies"
"Criminal Law; Crimes Against Public Order; Illegal Associations"
"Criminal Law; Crimes Against Public Order; Direct Assaults"
"Criminal Law; Crimes Against Public Order; Direct Assaults; With Murder"
"Criminal Law; Crimes Against Public Order; Indirect Assaults"
"Criminal Law; Crimes Against Public Order; Disobedience to Summons Issued by the National Assembly, Its Committees or Subcommittees, by the Constitutional Commissions, Its Committees, Subcommittees or Divisions"
"Criminal Law; Crimes Against Public Order; Resistance and Disobedience to a Person in authority or the Agents of Such Person"
"Criminal Law; Crimes Against Public Order; Persons in authority; Who Shall Be Deemed as Such"
"Criminal Law; Crimes Against Public Order; Tumults and Other Disturbances of Public Orders "
"Criminal Law; Crimes Against Public Order; Unlawful Use of Means of Publication and Unlawful Utterances"
"Criminal Law; Crimes Against Public Order; Alarms and Scandals"
"Criminal Law; Crimes Against Public Order; Delivery of Prisoners from Jail"
"Criminal Law; Crimes Against Public Order; Evasion of Service of Sentence"
"Criminal Law; Crimes Against Public Order; Evasion of Service of Sentence on the Occasion of Disorders, Conflagrations, Earthquakes, or Other Calamities"
"Criminal Law; Crimes Against Public Order; Other Cases of Evasion of Service of Sentence"
"Criminal Law; Crimes Against Public Order; Commission of Another Crime During Service of Penalty Imposed for Another Previous Offense"
"Criminal Law; Crimes Against Public Interest"
"Criminal Law; Crimes Against Public Interest; Counterfeiting the Great Seal of the Government of the Philippine Islands"
"Criminal Law; Crimes Against Public Interest; Forging the Signature or Stamp of the Chief Executive"
"Criminal Law; Crimes Against Public Interest; Using Forged Signature or Counterfeit Seal or Stamp"
"Criminal Law; Crimes Against Public Interest; Making and Importing and Uttering False Coins"
"Criminal Law; Crimes Against Public Interest; Mutilation of Coins"
"Criminal Law; Crimes Against Public Interest; Importation and Utterance of Mutilated Coins"
"Criminal Law; Crimes Against Public Interest; Selling of False or Mutilated Coin, Without Connivance"
"Criminal Law; Crimes Against Public Interest; Forging Treasury or Bank Notes or Other Documents Payable to Bearer"
"Criminal Law; Crimes Against Public Interest; Forged Treasury or Bank Notes or Other Documents Payable to Bearer; Importing, and Uttering Such False or Forged Notes and Documents"
"Criminal Law; Crimes Against Public Interest; Counterfeiting, Importing and Uttering Instruments Payable to Bearer"
"Criminal Law; Crimes Against Public Interest; Illegal Possession and Use of False Treasury or Bank Notes and Other Instruments of Credit"
"Criminal Law; Crimes Against Public Interest; How Forgery is Committed"
"Criminal Law; Crimes Against Public Interest; Falsification of Legislative Documents"
"Criminal Law; Crimes Against Public Interest; Falsification by Public Officer, Employee or Notary or Ecclesiastic Minister"
"Criminal Law; Crimes Against Public Interest; Falsification by Private Individuals and Use of Falsified Documents"
"Criminal Law; Crimes Against Public Interest; Falsification of Wireless, Cable, Telegraph and Telephone Messages, and Use of Said Falsified Messages"
"Criminal Law; Crimes Against Public Interest; False Medical Certificates, False Certificates of Merit or Service, etc."
"Criminal Law; Crimes Against Public Interest; Using False Certificates"
"Criminal Law; Crimes Against Public Interest; Manufacturing and Possession of Instruments or Implements for Falsification"
"Criminal Law; Crimes Against Public Interest; Usurpation of Authority or Official Functions"
"Criminal Law; Crimes Against Public Interest; Using Fictitious Name and Concealing True Name"
"Criminal Law; Crimes Against Public Interest; Illegal Use of Uniforms or Insignia"
"Criminal Law; Crimes Against Public Interest; False Testimony Against a Defendant"
"Criminal Law; Crimes Against Public Interest; False Testimony Favorable to the Defendant"
"Criminal Law; Crimes Against Public Interest; False Testimony in Civil Cases"
"Criminal Law; Crimes Against Public Interest; False Testimony in Other Cases and Perjury in Solemn Affirmation"
"Criminal Law; Crimes Against Public Interest; Offering False Testimony in Evidence"
"Criminal Law; Crimes Against Public Interest; Machinations in Public Auctions"
"Criminal Law; Crimes Against Public Interest; Monopolies and Combinations in Restraint of Trade"
"Criminal Law; Crimes Against Public Interest; Frauds in Commerce and Industry"
"Criminal Law; Crimes Against Public Interest; Importation and Disposition of Falsely Marked Articles or Merchandise Made of Gold, Silver, or Other Precious Metals or Their Alloys"
"Criminal Law; Crimes Against Public Interest; Substituting and Altering Trade-marks and Trade-names"
"Criminal Law; Crimes Against Public Interest; Unfair Competition and Fraudulent Registration of Trade-mark or Trade-name"
"Criminal Law; Crimes Relative to Opium and Other Prohibited Drugs"
"Criminal Law; Crimes Relative to Opium and Other Prohibited Drugs; Possession, Preparation and Use of Prohibited Drugs, and Maintenance of Opium Dens"
"Criminal Law; Crimes Relative to Opium and Other Prohibited Drugs; Keeper, Watchman and Visitor of Opium Den"
"Criminal Law; Crimes Relative to Opium and Other Prohibited Drugs; Importation and Sale of Prohibited Drugs"
"Criminal Law; Crimes Relative to Opium and Other Prohibited Drugs; Illegal Possession of Opium Pipe or Other Paraphernalia for the Use of Any Prohibited Drug"
"Criminal Law; Crimes Relative to Opium and Other Prohibited Drugs; Prescribing Opium Unnecessarily for a Patient"
"Criminal Law; Crimes Against Public Morals "
"Criminal Law; Crimes Against Public Morals; What Acts are Punishable in Gambling"
"Criminal Law; Crimes Against Public Morals; Importation, Sale and Possession of Lottery Tickets or Advertisements"
"Criminal Law; Crimes Against Public Morals; Betting in Sports Contests"
"Criminal Law; Crimes Against Public Morals; Illegal Betting on Horse Races"
"Criminal Law; Crimes Against Public Morals; Illegal Cockfighting"
"Criminal Law; Crimes Against Public Morals; Grave Scandal"
"Criminal Law; Crimes Against Public Morals; Immoral Doctrines, Obscene Publications and Exhibitions"
"Criminal Law; Crimes Against Public Morals; Vagrants and Prostitutes"
"Criminal Law; Crimes Committed by Public Officers"
"Criminal Law; Crimes Committed by Public Officers; Who are Public Officers"
"Criminal Law; Crimes Committed by Public Officers; Knowingly Rendering Unjust Judgment"
"Criminal Law; Crimes Committed by Public Officers; Judgment Rendered Through Negligence"
"Criminal Law; Crimes Committed by Public Officers; Unjust Interlocutory Order"
"Criminal Law; Crimes Committed by Public Officers; Malicious Delay in the Administration of Justice"
"Criminal Law; Crimes Committed by Public Officers; Prosecution of Offenses; Negligence and Tolerance"
"Criminal Law; Crimes Committed by Public Officers; Betrayal of Trust by an Attorney or Solicitor"
"Criminal Law; Crimes Committed by Public Officers; Direct Bribery"
"Criminal Law; Crimes Committed by Public Officers; Indirect Bribery"
"Criminal Law; Crimes Committed by Public Officers; Corruption of Public Officials"
"Criminal Law; Crimes Committed by Public Officers; Frauds Against the Public Treasury and Similar Offenses"
"Criminal Law; Crimes Committed by Public Officers; Other Frauds"
"Criminal Law; Crimes Committed by Public Officers; Prohibited Transactions"
"Criminal Law; Crimes Committed by Public Officers; Possession of Prohibited Interest by a Public Officer"
"Criminal Law; Crimes Committed by Public Officers; Malversation of Public Funds or Property"
"Criminal Law; Crimes Committed by Public Officers; Failure of Accountable Officer to Render Accounts"
"Criminal Law; Crimes Committed by Public Officers; Failure of a Responsible Public Officer to Render Accounts Before Leaving the Country"
"Criminal Law; Crimes Committed by Public Officers; Illegal Use of Public Funds or Property"
"Criminal Law; Crimes Committed by Public Officers; Failure to Make Delivery of Public Funds or Property"
"Criminal Law; Crimes Committed by Public Officers; Officers Included in the Preceding Provisions"
"Criminal Law; Crimes Committed by Public Officers; Conniving With or Consenting to Evasion"
"Criminal Law; Crimes Committed by Public Officers; Evasion Through Negligence"
"Criminal Law; Crimes Committed by Public Officers; Escape of Prisoner under the Custody of a Person Not a Public Officer"
"Criminal Law; Crimes Committed by Public Officers; Removal, Concealment or Destruction of Documents"
"Criminal Law; Crimes Committed by Public Officers; Officer Breaking Seal"
"Criminal Law; Crimes Committed by Public Officers; Opening of Closed Documents"
"Criminal Law; Crimes Committed by Public Officers; Revelation of Secrets by an Officer"
"Criminal Law; Crimes Committed by Public Officers; Open Disobedience"
"Criminal Law; Crimes Committed by Public Officers; Disobedience to Order of Superior Officer, When Said Order Was Suspended by Inferior Officer"
"Criminal Law; Crimes Committed by Public Officers; Refusal of Assistance"
"Criminal Law; Crimes Committed by Public Officers; Refusal to Discharge Elective Office"
"Criminal Law; Crimes Committed by Public Officers; Maltreatment of Prisoners"
"Criminal Law; Crimes Committed by Public Officers; Anticipation of Duties of a Public Office"
"Criminal Law; Crimes Committed by Public Officers; Prolonging Performance of Duties and Powers"
"Criminal Law; Crimes Committed by Public Officers; Abandonment of Office or Position"
"Criminal Law; Crimes Committed by Public Officers; Usurpation of Legislative Powers"
"Criminal Law; Crimes Committed by Public Officers; Usurpation of Executive Functions"
"Criminal Law; Crimes Committed by Public Officers; Usurpation of Judicial Functions"
"Criminal Law; Crimes Committed by Public Officers; Disobeying Request for Disqualification"
"Criminal Law; Crimes Committed by Public Officers; Orders or Requests by Executive Officers to Any Judicial Authority"
"Criminal Law; Crimes Committed by Public Officers; Unlawful Appointments"
"Criminal Law; Crimes Committed by Public Officers; Abuses Against Chastity"
"Criminal Law; Crimes Against Persons"
"Criminal Law; Crimes Against Persons; Parricide"
"Criminal Law; Crimes Against Persons; Death or Physical Injuries Inflicted Under Exceptional Circumstances"
"Criminal Law; Crimes Against Persons; Murder"
"Criminal Law; Crimes Against Persons; Murder; Elements"
"Criminal Law; Crimes Against Persons; Murder; Elements; Treachery"
"Criminal Law; Crimes Against Persons; Murder; Complex Crime of Direct Assault with Murder"
"Criminal Law; Crimes Against Persons; Homicide"
"Criminal Law; Crimes Against Persons; Homicide; Civil Liability"
"Criminal Law; Crimes Against Persons; Homicide; Civil Liability; Actual and Moral Damages"
"Criminal Law; Crimes Against Persons; Homicide; Civil Liability; Indemnity"
"Criminal Law; Crimes Against Persons; Homicide; Civil Liability; Temperate Damages"
"Criminal Law; Crimes Against Persons; Homicide; Penalty"
"Criminal Law; Crimes Against Persons; Penalty for Frustrated Parricide, Murder or Homicide"
"Criminal Law; Crimes Against Persons; Death Caused in a Tumultuous Affray"
"Criminal Law; Crimes Against Persons; Physical Injuries Inflicted in a Tumultuous Affray"
"Criminal Law; Crimes Against Persons; Giving Assistance to Suicide"
"Criminal Law; Crimes Against Persons; Discharge of Firearms"
"Criminal Law; Crimes Against Persons; Infanticide"
"Criminal Law; Crimes Against Persons; Intentional Abortion"
"Criminal Law; Crimes Against Persons; Unintentional Abortion"
"Criminal Law; Crimes Against Persons; Abortion Practiced by the Woman Herself or by Her Parents"
"Criminal Law; Crimes Against Persons; Abortion Practiced by a Physician or Midwife"
"Criminal Law; Crimes Against Persons; Dispensing of Abortives"
"Criminal Law; Crimes Against Persons; Responsibility of Participants in a Duel"
"Criminal Law; Crimes Against Persons; Challenging to a Duel"
"Criminal Law; Crimes Against Persons; Mutilation"
"Criminal Law; Crimes Against Persons; Serious Physical Injuries"
"Criminal Law; Crimes Against Persons; Administering Injurious Substances or Beverages"
"Criminal Law; Crimes Against Persons; Less Serious Physical Injuries"
"Criminal Law; Crimes Against Persons; Slight Physical Injuries and Maltreatment"
"Criminal Law; Crimes Against Persons; Rape"
"Criminal Law; Crimes Against Persons; Rape; Attempted Rape"
"Criminal Law; Crimes Against Persons; Rape; Attempted Rape; Definition"
"Criminal Law; Crimes Against Persons; Rape; Attempted Rape; Distinguished from Acts of Lasciviousness"
"Criminal Law; Crimes Against Persons; Rape; Elements"
"Criminal Law; Crimes Against Persons; Rape; Elements; Carnal Knowledge, Defined"
"Criminal Law; Crimes Against Persons; Rape; Qualified Rape"
"Criminal Law; Crimes Against Persons; Rape; Qualified Rape; Civil Liability"
"Criminal Law; Crimes Against Persons; Rape; Qualified Rape; Definition"
"Criminal Law; Crimes Against Persons; Rape; Qualified Rape; Penalty"
"Criminal Law; Crimes Against Persons; Rape; Penalties"
"Criminal Law; Crimes Against Persons; Rape; Effect of Pardon"
"Criminal Law; Crimes Against Persons; Rape; Presumptions"
"Criminal Law; Crimes Against Persons; Rape by Sexual Assault"
"Criminal Law; Crimes Against Personal Liberty and Security"
"Criminal Law; Crimes Against Personal Liberty and Security; Kidnapping and Serious Illegal Detention"
"Criminal Law; Crimes Against Personal Liberty and Security; Slight Illegal Detention"
"Criminal Law; Crimes Against Personal Liberty and Security; Unlawful Arrest"
"Criminal Law; Crimes Against Personal Liberty and Security; Kidnapping and Failure to Return a Minor"
"Criminal Law; Crimes Against Personal Liberty and Security; Inducing a Minor to Abandon his Home"
"Criminal Law; Crimes Against Personal Liberty and Security; Slavery"
"Criminal Law; Crimes Against Personal Liberty and Security; Exploitation of Child Labor"
"Criminal Law; Crimes Against Personal Liberty and Security; Services Rendered Under Compulsion in Payment of Debts"
"Criminal Law; Crimes Against Personal Liberty and Security; Abandonment of Persons in Danger"
"Criminal Law; Crimes Against Personal Liberty and Security; Abandonment of One's Own Victim"
"Criminal Law; Crimes Against Personal Liberty and Security; Abandoning a Minor"
"Criminal Law; Crimes Against Personal Liberty and Security; Death of The Minor Results "
"Criminal Law; Crimes Against Personal Liberty and Security; Life of The Minor Is Endangered"
"Criminal Law; Crimes Against Personal Liberty and Security; Abandonment of Minor by Person Entrusted With His Custody"
"Criminal Law; Crimes Against Personal Liberty and Security; Indifference of Parents"
"Criminal Law; Crimes Against Personal Liberty and Security; Exploitation of Minors"
"Criminal Law; Crimes Against Personal Liberty and Security; Additional Penalties for Other Offenses"
"Criminal Law; Crimes Against Personal Liberty and Security; Qualified Trespass to Dwelling"
"Criminal Law; Crimes Against Personal Liberty and Security; Other Forms of Trespass"
"Criminal Law; Crimes Against Personal Liberty and Security; Grave Threats"
"Criminal Law; Crimes Against Personal Liberty and Security; Light Threats"
"Criminal Law; Crimes Against Personal Liberty and Security; Bond for Good Behavior"
"Criminal Law; Crimes Against Personal Liberty and Security; Other Light Threats"
"Criminal Law; Crimes Against Personal Liberty and Security; Grave Coercions"
"Criminal Law; Crimes Against Personal Liberty and Security; Light Coercions"
"Criminal Law; Crimes Against Personal Liberty and Security; Other Similar Coercions; Compulsory Purchase of Merchandise"
"Criminal Law; Crimes Against Personal Liberty and Security; Other Similar Coercions; Compulsory Purchase of Merchandiseulsory Purchase of Merchandise"
"Criminal Law; Crimes Against Personal Liberty and Security; Formation, Maintenance and Prohibition of Combination of Capital or Labor Through Violence or Threats"
"Criminal Law; Crimes Against Personal Liberty and Security; Discovering Secrets Through Seizure of Correspondence"
"Criminal Law; Crimes Against Personal Liberty and Security; Revealing Secrets With Abuse of Office"
"Criminal Law; Crimes Against Personal Liberty and Security; Revelation of Industrial Secrets"
"Criminal Law; Crimes Against Property"
"Criminal Law; Crimes Against Property; Who are Guilty of Robbery"
"Criminal Law; Crimes Against Property; Robbery with Violence against or Intimidation of Persons"
"Criminal Law; Crimes Against Property; Robbery with Physical Injuries, Committed in an Uninhabited Place and by a Band"
"Criminal Law; Crimes Against Property; Definition of a Band and Penalty Incurred by the Members Thereof "
"Criminal Law; Crimes Against Property; Attempted and Frustrated Robbery Committed Under Certain Circumstances"
"Criminal Law; Crimes Against Property; Execution of Deeds by Means of Violence or Intimidation"
"Criminal Law; Crimes Against Property; Robbery in an Inhabited House or Public Building or Edifice Devoted to Worship"
"Criminal Law; Crimes Against Property; Robbery in an Uninhabited Place and by a Band"
"Criminal Law; Crimes Against Property; Inhabited House, Public Building or Building Dedicated to Religious Worship and Their Dependencies; Definition"
"Criminal Law; Crimes Against Property; Robbery in an Uninhabited Place or in a Private Building"
"Criminal Law; Crimes Against Property; Robbery of Cereals, Fruits, or Firewood in an Uninhabited Place or Private Building"
"Criminal Law; Crimes Against Property; Possession of Picklocks or Similar Tools"
"Criminal Law; Crimes Against Property; False Keys"
"Criminal Law; Crimes Against Property; Who are Brigands "
"Criminal Law; Crimes Against Property; Aiding and Abetting a Band of Brigands"
"Criminal Law; Crimes Against Property; Who are Liable for Theft"
"Criminal Law; Crimes Against Property; Penalties"
"Criminal Law; Crimes Against Property; Qualified Theft"
"Criminal Law; Crimes Against Property; Theft of the Property of the National Library and National Museum"
"Criminal Law; Crimes Against Property; Occupation of Real Property or Usurpation of Real Rights in Property"
"Criminal Law; Crimes Against Property; Altering Boundaries or Landmarks"
"Criminal Law; Crimes Against Property; Fraudulent Insolvency"
"Criminal Law; Crimes Against Property; Swindling (Estafa)"
"Criminal Law; Crimes Against Property; Swindling (Estafa); Civil Liability"
"Criminal Law; Crimes Against Property; Swindling (Estafa); Distinguished from B.P. 22 Case"
"Criminal Law; Crimes Against Property; Other Forms of Swindling"
"Criminal Law; Crimes Against Property; Swindling a Minor"
"Criminal Law; Crimes Against Property; Other Deceits"
"Criminal Law; Crimes Against Property; Removal, Sale or Pledge of Mortgaged Property"
"Criminal Law; Crimes Against Property; Destructive Arson"
"Criminal Law; Crimes Against Property; Other Forms of Arson"
"Criminal Law; Crimes Against Property; Cases of Arson Not Included in the Preceding Articles"
"Criminal Law; Crimes Against Property; Arson of Property of Small Value"
"Criminal Law; Crimes Against Property; Crimes Involving Destruction"
"Criminal Law; Crimes Against Property; Burning One's Own Property as a Means to Commit Arson"
"Criminal Law; Crimes Against Property; Setting Fire to Property Exclusively Owned by the Offender"
"Criminal Law; Crimes Against Property; Malicious Mischief; Who are Liable"
"Criminal Law; Crimes Against Property; Special Cases of Malicious Mischief"
"Criminal Law; Crimes Against Property; Other Mischiefs"
"Criminal Law; Crimes Against Property; Damages and Obstruction to Means of Communication"
"Criminal Law; Crimes Against Property; Destroying or Damaging Statues, Public Monuments or Paintings"
"Criminal Law; Crimes Against Property; Persons Exempt from Criminal Liability"
"Criminal Law; Crimes Against Chastity"
"Criminal Law; Crimes Against Chastity; Who are Guilty of Adultery"
"Criminal Law; Crimes Against Chastity; Concubinage"
"Criminal Law; Crimes Against Chastity; Acts of Lasciviousness"
"Criminal Law; Crimes Against Chastity; Qualified Seduction"
"Criminal Law; Crimes Against Chastity; Simple Seduction"
"Criminal Law; Crimes Against Chastity; Acts of Lasciviousness with the Consent of the Offended Party"
"Criminal Law; Crimes Against Chastity; Corruption of Minors"
"Criminal Law; Crimes Against Chastity; White Slave Trade"
"Criminal Law; Crimes Against Chastity; Forcible Abduction"
"Criminal Law; Crimes Against Chastity; Consented Abduction"
"Criminal Law; Crimes Against Chastity; Prosecution of the Crimes of Adultery, Concubinage, Seduction, Abduction, Rape and Acts of Lasciviousness"
"Criminal Law; Crimes Against Chastity; Civil Liability of Persons Guilty of Crimes against Chastity"
"Criminal Law; Crimes Against Chastity; Liability of Ascendants, Guardians, Teachers, or Other Persons Entrusted with the Custody of the Offended Party"
"Criminal Law; Crimes Against the Civil Status of Persons"
"Criminal Law; Crimes Against the Civil Status of Persons; Simulation of Births"
"Criminal Law; Crimes Against the Civil Status of Persons; Substitution of One Child for Another "
"Criminal Law; Crimes Against the Civil Status of Persons; Concealment or Abandonment of a Legitimate Child"
"Criminal Law; Crimes Against the Civil Status of Persons; Usurpation of Civil Status"
"Criminal Law; Crimes Against the Civil Status of Persons; Bigamy"
"Criminal Law; Crimes Against the Civil Status of Persons; Marriage Contracted against Provisions of Laws"
"Criminal Law; Crimes Against the Civil Status of Persons; Premature Marriages"
"Criminal Law; Crimes Against the Civil Status of Persons; Performance of Illegal Marriage Ceremony"
"Criminal Law; Crimes Against Honor"
"Criminal Law; Crimes Against Honor; Definition of Libel"
"Criminal Law; Crimes Against Honor; Requirement for Publicity"
"Criminal Law; Crimes Against Honor; Libel by Means of Writing or Similar Means"
"Criminal Law; Crimes Against Honor; Threatening to Publish and Offer to Prevent Such Publication for a Compensation"
"Criminal Law; Crimes Against Honor; Prohibited Publication of Acts Referred to in the Course of Official Proceedings"
"Criminal Law; Crimes Against Honor; Slander"
"Criminal Law; Crimes Against Honor; Slander by Deed"
"Criminal Law; Crimes Against Honor; Persons Responsible"
"Criminal Law; Crimes Against Honor; Proof of the Truth"
"Criminal Law; Crimes Against Honor; Libelous Remarks"
"Criminal Law; Crimes Against Honor; Incriminating Innocent Person"
"Criminal Law; Crimes Against Honor; Intriguing against Honor"
"Criminal Law; Quasi-Offenses"
"Criminal Law; Quasi-Offenses; Imprudence and Negligence"
"Criminal Law; Special Penal Laws"
"Criminal Law; Special Penal Laws; In General"
"Criminal Law; Special Penal Laws; In General; Indeterminate Sentence Law"
"Criminal Law; Special Penal Laws; In General; Indeterminate Sentence Law; Application"
"Criminal Law; Special Penal Laws; Anti-Graft and Corrupt Practices Act"
"Criminal Law; Special Penal Laws; Anti-Graft and Corrupt Practices Act; Sec, 3 (e)"
"Criminal Law; Special Penal Laws; Special Protection of Children Against Abuse, Exploitation and Discrimination Act"
"Criminal Law; Special Penal Laws; Special Protection of Children Against Abuse, Exploitation and Discrimination Act; Child Abuse"
"Criminal Law; Special Penal Laws; Social Security Law; Violation of Sec. 22 (a)"
"Criminal Law; Special Penal Laws"
"Criminal Law; Special Penal Laws; Comprehensive Dangerous Drugs Act"
"Criminal Law; Special Penal Laws; Comprehensive Dangerous Drugs Act; Illegal Possession of Dangerous Drugs"
"Criminal Law; Special Penal Laws; Comprehensive Dangerous Drugs Act; Illegal Sale of Drugs"
"Criminal Law; Special Penal Laws; Comprehensive Dangerous Drugs Act; Chain of Custody Rule"
"Criminal Law; Special Penal Laws; Carnapping"
"Criminal Law; Special Penal Laws; Carnapping; Elements"
1 Criminal Law
2 Criminal Law; Felonies; Definition
3 Criminal Law; Felonies; Deceit
4 Criminal Law; Felonies; Fault
5 Criminal Law; Felonies; Criminal Liability
6 Criminal Law; Felonies; Stages of Commission; Consummated Felony
7 Criminal Law; Felonies; Stages of Commission; Frustrated Felony
8 Criminal Law; Felonies; Stages of Commission; Attempted Felony
9 Criminal Law; Felonies; Conspiracy
10 Criminal Law; Felonies; Proposal
11 Criminal Law; Felonies; Types of Felonies
12 Criminal Law; Felonies; Types of Felonies; Grave Felonies
13 Criminal Law; Felonies; Types of Felonies; Less Grave Felonies
14 Criminal Law; Felonies; Types of Felonies; Light Felonies
15 Criminal Law; Justifying Circumstances
16 Criminal Law; Justifying Circumstances; Self-defense
17 Criminal Law; Justifying Circumstances; Self-defense; Unlawful Aggression
18 Criminal Law; Justifying Circumstances; Self-defense; Reasonable Necessity of Means Employed to Prevent or Repel It
19 Criminal Law; Justifying Circumstances; Self-defense; Lack of Sufficient Provocation on the Part of the Person Defending Himself
20 Criminal Law; Justifying Circumstances; Defense of Relatives
21 Criminal Law; Justifying Circumstances; Defense of Relatives; Unlawful Aggression
22 Criminal Law; Justifying Circumstances; Defense of Relatives; Unlawful Aggression; Reasonable Necessity of Means Employed to Prevent or Repel It
23 Criminal Law; Justifying Circumstances; Defense of Relatives; Unlawful Aggression; In Case Provocation Was Given by Person Attacked
24 Criminal Law; Justifying Circumstances; Defense of Strangers
25 Criminal Law; Justifying Circumstances; Defense of Strangers; Unlawful Aggression
26 Criminal Law; Justifying Circumstances; Defense of Strangers; Reasonable Necessity of Means employed to Prevent or Repel It
27 Criminal Law; Justifying Circumstances; Defense of Strangers; The Person Defending Be Not Induced by Revenege, Resentment or Other Evil Motive
28 Criminal Law; Justifying Circumstances; State of Necessity
29 Criminal Law; Justifying Circumstances; State of Necessity; Evil Sought to Be Avoided Actually Exists
30 Criminal Law; Justifying Circumstances; State of Necessity; Injury Feared Greater Than That Done to Avoid It
31 Criminal Law; Justifying Circumstances; State of Necessity; No Other Practical and Less Harmful Means of Preventing It
32 Criminal Law; Justifying Circumstances; Fulfillment of Duty
33 Criminal Law; Justifying Circumstances; Lawful Exercise of a Right
34 Criminal Law; Justifying Circumstances; Obedience to a Lawful Order Issued by a Superior
35 Criminal Law; Exempting Circumstances
36 Criminal Law; Exempting Circumstances; Imbecility
37 Criminal Law; Exempting Circumstances; Insanity
38 Criminal Law; Exempting Circumstances; Insanity; Lucid Interval
39 Criminal Law; Exempting Circumstances; Minority Under 9 Years of Age
40 Criminal Law; Exempting Circumstances; Minority Over 9 But Under 15 Years of Age
41 Criminal Law; Exempting Circumstances; Accident
42 Criminal Law; Exempting Circumstances; Compulsion of an Irresistible Force
43 Criminal Law; Exempting Circumstances; Impulse of an Uncontrollable Fear of an Equal or Greater Injury
44 Criminal Law; Exempting Circumstances; Lawful or Insuperable Cause
45 Criminal Law; Mitigating Circumstances
46 Criminal Law; Mitigating Circumstances; Incomplete Justifying or Exempting
47 Criminal Law; Mitigating Circumstances; Offender is Under 18 or Over 70 Years of Age
48 Criminal Law; Mitigating Circumstances: No Intention to Commit So Grave a Wrong
49 Criminal Law; Mitigating Circumstances; Sufficient Provocation by Offended Party
50 Criminal Law; Mitigating Circumstances; Immediate Vindication of a Grave Offense
51 Criminal Law; Mitigating Circumstances; Passion or Obfuscation
52 Criminal Law; Mitigating Circumstances; Voluntary Surrender
53 Criminal Law; Mitigating Circumstances; Voluntary Confession
54 Criminal Law; Mitigating Circumstances; Offender Has a Physical Defect Which Restricts His Means of Action, Defense, or Communication With Fellow Beings (Deaf, Dumb, or Blind)
55 Criminal Law; Mitigating Circumstances; Illness of the Offender as Would Diminish Willpower Without Depriving Him of Consciousness of His Acts
56 Criminal Law; Mitigating Circumstances; Circumstances Analogous to Other Mitigating Circumstances
57 Criminal Law; Aggravating Circumstances
58 Criminal Law; Aggravating Circumstances; Taking Advantage of Public Position
59 Criminal Law; Aggravating Circumstances; In Contempt of or With Insult to Public Authorities
60 Criminal Law; Aggravating Circumstances; With Insult or in Disregard Due to the Offended Party on Account of His Rank, Age or Sex
61 Criminal Law; Aggravating Circumstances; In the Dwelling of the Offended Party, if the Latter Has Not Given Provocation
62 Criminal Law; Aggravating Circumstances; With Abuse of Confidence or Obvious Ungratefulness
63 Criminal Law; Aggravating Circumstances; In the Palace of the Chief Executive
64 Criminal Law; Aggravating Circumstances; In the Presence of the Chief Executive
65 Criminal Law; Aggravating Circumstances; Where Public Authorities are Engaged in the Discharge of Their Duties
66 Criminal Law; Aggravating Circumstances; In a Place Dedicated to Religious Worship
67 Criminal Law; Aggravating Circumstances; Nighttime
68 Criminal Law; Aggravating Circumstances; In an Uninhabited Place
69 Criminal Law; Aggravating Circumstances; By a Band
70 Criminal Law; Aggravating Circumstances; On the Occasion of a Conflagration
71 Criminal Law; Aggravating Circumstances; On the Occasion of a Shipwreck
72 Criminal Law; Aggravating Circumstances; On the Occasion of an Earthquake
73 Criminal Law; Aggravating Circumstances; On the Occasion of an Epidemic
74 Criminal Law; Aggravating Circumstances; On the Occasion of a Calamity or Misfortune
75 Criminal Law; Aggravating Circumstances; With the Aid of Armed Men or Persons Who Insure or Afford Impunity
76 Criminal Law; Aggravating Circumstances; Recidivism
77 Criminal Law; Aggravating Circumstances; Offender Has Previously Been Punished for an Offense to Which the Law Attaches an Equal or Greater Penalty
78 Criminal Law; Aggravating Circumstances; Offender Has Previously Been Punished for Two or More Crimes to Which It Attaches a Lighter Penalty
79 Criminal Law; Aggravating Circumstances; In Consideration of a Price, Reward or Promise
80 Criminal Law; Aggravating Circumstances; By Means of Inundation, Fire, Poison, Explosion, Stranding of a Vessel or Intentional Damage Thereto, Derailment of a Locomotive, or by the Use of Any Other Artifice Involving Great Waste and Ruin
81 Criminal Law; Aggravating Circumstances; With Evident Premeditation
82 Criminal Law; Aggravating Circumstances; Employing Craft, Fraud, or Disguise
83 Criminal Law; Aggravating Circumstances; Taking Advantage of Superior Strength
84 Criminal Law; Aggravating Circumstances; Employing Means to Weaken the Defense
85 Criminal Law; Aggravating Circumstances; Treachery
86 Criminal Law; Aggravating Circumstances; Ignominy
87 Criminal Law; Aggravating Circumstances; After an Unlawful Entry
88 Criminal Law; Aggravating Circumstances; By Breaking a Wall, Roof, Floor, Door, or Window
89 Criminal Law; Aggravating Circumstances; With the Aid of Persons Under 15 Years of Age or By Means of Motor Vehicles, Motorized Watercraft, Airships, or Other Similar Means
90 Criminal Law; Aggravating Circumstances; Causing Another Wrong Not Necessary for Its Commission
91 Criminal Law; Alternative Circumstances
92 Criminal Law; Alternative Circumstances; Relationship
93 Criminal Law; Alternative Circumstances; Intoxication
94 Criminal Law; Alternative Circumstances; Degree of Instruction and Education of the Offender
95 Criminal Law; Persons Criminally Liable
96 Criminal Law; Criminal Liability; Who Are Criminally Liable
97 Criminal Law; Criminal Liability; Who Are Criminally Liable; Principals
98 Criminal Law; Criminal Liability; Who Are Criminally Liable; Accomplices
99 Criminal Law; Criminal Liability; Who Are Criminally Liable; Accessories
100 Criminal Law; Criminal Liability; Accessories Exempt from Criminal Liability
101 Criminal Law; Penalties
102 Criminal Law; Penalties; In General
103 Criminal Law; Penalties; Imposable Penalties
104 Criminal Law; Penalties; Retroactive Effect of Penal Laws
105 Criminal Law; Penalties; Effect of Pardon by Offended Party
106 Criminal Law; Penalties; Measures of Prevention or Safety
107 Criminal Law; Penalties; Classification of Penalties
108 Criminal Law; Penalties; Classification of Penalties; Principal Penalties
109 Criminal Law; Penalties; Classification of Penalties; Principal Penalties; Capital Punishment
110 Criminal Law; Penalties; Classification of Penalties; Principal Penalties; Afflictive Penalties
111 Criminal Law; Penalties; Classification of Penalties; Principal Penalties; Correctional Penalties
112 Criminal Law; Penalties; Classification of Penalties; Principal Penalties; Light Penalties
113 Criminal Law; Penalties; Classification of Penalties; Principal Penalties; Common Penalties
114 Criminal Law; Penalties; Classification of Penalties; Accessory Penalties
115 Criminal Law; Penalties; Classification of Penalties; Fines
116 Criminal Law; Penalties; Duration and Effect of Penalties
117 Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties
118 Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties; Reclusion Perpetua
119 Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties; Reclusion Temporal
120 Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties; Prision Mayor and Temporary Disqualification
121 Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties; Prision Correccional
122 Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties; Suspension
123 Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties; Destierro
124 Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties; Arresto Mayor
125 Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties; Arresto Menor
126 Criminal Law; Penalties; Duration and Effect of Penalties; Duration of Penalties; Bond to Keep the Peace
127 Criminal Law; Penalties; Duration and Effect of Penalties; Computation of Penalties
128 Criminal Law; Penalties; Duration and Effect of Penalties; Period of Preventive Suspension Deducted From Term of Imprisonment
129 Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature
130 Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature; Perpetual or Temporary Absolute Disqualification
131 Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature; Perpetual or Temporary Special Disqualification
132 Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature; Perpetual or Temporary Special Disqualification for the Exercise of the Right of Suffrage
133 Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature; Suspension From Any Public Office, Profession, or Calling, or the Right of Suffrage
134 Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature; Civil Interdiction
135 Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature; Bond to Keep the Peace
136 Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature
137 Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature; Costs
138 Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature; Pecuniary Liabilities
139 Criminal Law; Penalties; Duration and Effect of Penalties; Effects of Penalties According to the Respective Nature; Subsidiary Penalty
140 Criminal Law; Penalties; Duration and Effect of Penalties; Penalties in Which Other Accessory Penalties are Inherent
141 Criminal Law; Penalties; Duration and Effect of Penalties; Penalties in Which Other Accessory Penalties are Inherent; Death And Its Accessory Penalties
142 Criminal Law; Penalties; Duration and Effect of Penalties; Penalties in Which Other Accessory Penalties are Inherent; Reclusion Perpetua and Reclusion Temporal and its Accessory Penalties
143 Criminal Law; Penalties; Duration and Effect of Penalties; Penalties in Which Other Accessory Penalties are Inherent; Prision Mayor and its Accessory Penalties
144 Criminal Law; Penalties; Duration and Effect of Penalties; Penalties in Which Other Accessory Penalties are Inherent; Prision Correccional and its Accessory Penalties
145 Criminal Law; Penalties; Duration and Effect of Penalties; Penalties in Which Other Accessory Penalties are Inherent; Arresto and its Accessory Penalties
146 Criminal Law; Penalties; Duration and Effect of Penalties; Penalties in Which Other Accessory Penalties are Inherent; Confiscation and Forfeiture of the Proceeds or Instruments of the Crime
147 Criminal Law; Penalties; Application of Penalties
148 Criminal Law; Penalties; Application of Penalties; Penalties to be Imposed on Principals in General
149 Criminal Law; Penalties; Application of Penalties; In What Cases The Death Penalty Shall Not Be Imposed; Automatic Review of Death Penalty Cases
150 Criminal Law; Penalties; Application of Penalties; Penalty For Complex Crimes
151 Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon Principals When the Crime Committed Is Different From That Intended
152 Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon Principals of a Frustrated Crime
153 Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon Principals of an Attempted Crime
154 Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon Accomplices in a Consummated Crime
155 Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon Accessories to the Commission of a Consummated Crime
156 Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon Accomplices in a Frustrated Crime
157 Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon Accessories of a Frustrated Crime
158 Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon Accomplices in an Attempted Crime
159 Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon Accessories of an Attempted Crime
160 Criminal Law; Penalties; Application of Penalties; Additional Penalty to Be Imposed Upon Certain Accessories
161 Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed in Case of Failure to Commit the Crime Because the Means Employed or the Aims Sought Are Impossible
162 Criminal Law; Penalties; Application of Penalties; Exceptions to the Rules Established in Articles 50 to 57
163 Criminal Law; Penalties; Application of Penalties; Rules for Graduating Penalties
164 Criminal Law; Penalties; Application of Penalties
165 Criminal Law; Penalties; Application of Penalties; Effects of the Attendance of Mitigating or Aggravating Circumstances and of Habitual Delinquency
166 Criminal Law; Penalties; Application of Penalties; Rules for the Application of Indivisible Penalties
167 Criminal Law; Penalties; Application of Penalties; Rules for the Application of Penalties Which Contain Three Periods
168 Criminal Law; Penalties; Application of Penalties; Rule in Cases in Which the Penalty is Not Composed of Three Periods
169 Criminal Law; Penalties; Application of Penalties; Imposition of Fines
170 Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed When Not All the Requisites of Exemption of the Fourth Circumstance of Article 12 are Present
171 Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed Upon a Person Under Eighteen Years of Age
172 Criminal Law; Penalties; Application of Penalties; Penalty to Be Imposed When the Crime Committed is Not Wholly Excusable
173 Criminal Law; Penalties; Application of Penalties; Successive Service of Sentences; Exception
174 Criminal Law; Penalties; Application of Penalties; Graduated Scales
175 Criminal Law; Penalties; Application of Penalties; Preference in the Payment of the Civil Liabilities
176 Criminal Law; Penalties; Application of Penalties; Presumption in Regard to the Imposition of Accessory Penalties
177 Criminal Law; Penalties; Application of Penalties; Penalty Higher Than Reclusión Perpetua in Certain Cases
178 Criminal Law; Penalties; Application of Penalties; Increasing or Reducing the Penalty of Fine by One or More Degrees
179 Criminal Law; Penalties; Application of Penalties; Legal Period of Duration of Divisible Penalties
180 Criminal Law; Penalties; Application of Penalties; When the Penalty is a Complex One Composed of Three Distinct Penalties
181 Criminal Law; Penalties; Execution and Service of Penalties
182 Criminal Law; Penalties; Execution and Service of Penalties; In General
183 Criminal Law; Penalties; Execution and Service of Penalties; When and How a Penalty is to Be Executed
184 Criminal Law; Penalties; Execution and Service of Penalties; Suspension of the Execution and Service of the Penalties in Case of Insanity
185 Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties
186 Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; When and How the Death Penalty is to Be Executed
187 Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Notification and Execution of the Sentence and Assistance to the Culprit
188 Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Suspension of the Execution of the Death Sentence
189 Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Place of Execution and Persons Who May Witness the Same
190 Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Provision Relative to the Corpse of the Person Executed and its Burial
191 Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Reclusión Perpetua
192 Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Reclusión Temporal
193 Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Prisión Mayor
194 Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Prisión Correccional
195 Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Arresto Mayor
196 Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Destierro
197 Criminal Law; Penalties; Execution and Service of Penalties; Execution of Principal Penalties; Arresto Menor
198 Criminal Law; Extinction of Criminal Liability
199 Criminal Law; Extinction of Criminal Liability; Total Extinction of Criminal Liability
200 Criminal Law; Extinction of Criminal Liability; Total Extinction of Criminal Liability; Prescription of Crimes
201 Criminal Law; Extinction of Criminal Liability; Total Extinction of Criminal Liability; Prescription of Crimes; Computation of Prescription of Offenses
202 Criminal Law; Extinction of Criminal Liability; Total Extinction of Criminal Liability; Prescription of Penalties
203 Criminal Law; Extinction of Criminal Liability; Total Extinction of Criminal Liability; Prescription of Penalties; Computation of the Prescription of Penalties
204 Criminal Law; Extinction of Criminal Liability; Partial Extinction of Criminal Liability
205 Criminal Law; Extinction of Criminal Liability; Partial Extinction of Criminal Liability; Conditional Pardon
206 Criminal Law; Extinction of Criminal Liability; Partial Extinction of Criminal Liability; Conditional Pardon; Obligation Incurred by Person Granted Conditional Pardon
207 Criminal Law; Extinction of Criminal Liability; Partial Extinction of Criminal Liability; Commutation of Sentence
208 Criminal Law; Extinction of Criminal Liability; Partial Extinction of Criminal Liability; Commutation of Sentence; Effect of Commutation of Sentence
209 Criminal Law; Extinction of Criminal Liability; Partial Extinction of Criminal Liability; Allowance for Good Conduct
210 Criminal Law; Extinction of Criminal Liability; Partial Extinction of Criminal Liability; Allowance for Good Conduct; Special Time Allowance for Loyalty
211 Criminal Law; Extinction of Criminal Liability; Partial Extinction of Criminal Liability; Allowance for Good Conduct; Who Grants Time Allowances
212 Criminal Law; Civil Liability
213 Criminal Law; Civil Liability; Persons Civilly Liable for Felonies
214 Criminal Law; Civil Liability; Persons Civilly Liable for Felonies; Civil Liability of Person Guilty of Felony
215 Criminal Law; Civil Liability; Persons Civilly Liable for Felonies; Subsidiary Civil Liability of Innkeepers, Tavernkeepers and Proprietors of Establishments
216 Criminal Law; Civil Liability; Persons Civilly Liable for Felonies; Subsidiary Civil Liability of Other Persons
217 Criminal Law; Civil Liability; What Civil Liability Includes
218 Criminal Law; Civil Liability; What Civil Liability Includes; What is Included in Civil Liability
219 Criminal Law; Civil Liability; What Civil Liability Includes; What is Included in Civil Liability; Restitution
220 Criminal Law; Civil Liability; What Civil Liability Includes; What is Included in Civil Liability; Reparation of Damage Caused
221 Criminal Law; Civil Liability; What Civil Liability Includes; What is Included in Civil Liability; Indemnification for Consequential Damages
222 Criminal Law; Civil Liability; Obligation to Make Restoration, Reparation for Damages, or Indemnification for Consequential Damages and Action to Demand the Same
223 Criminal Law; Civil Liability; Obligation to Make Restoration, Reparation for Damages, or Indemnification for Consequential Damages and Action to Demand the Same; Share of Each Person Civilly Liable
224 Criminal Law; Civil Liability; Obligation to Make Restoration, Reparation for Damages, or Indemnification for Consequential Damages and Action to Demand the Same; Several and Subsidiary Liability of Principals, Accomplices, and Accessories of a Felony
225 Criminal Law; Civil Liability; Obligation to Make Restoration, Reparation for Damages, or Indemnification for Consequential Damages and Action to Demand the Same; Obligation to Make Restitution in Certain Cases
226 Criminal Law; Civil Liability; Extinction and Survival of Civil Liability
227 Criminal Law; Civil Liability; Extinction and Survival of Civil Liability; Extinction of Civil Liability
228 Criminal Law; Civil Liability; Extinction and Survival of Civil Liability; Obligation to Satisfy Civil Liability
229 Criminal Law; Crimes Against National Security and the Law of Nations
230 Criminal Law; Crimes Against National Security and the Law of Nations; Treason
231 Criminal Law; Crimes Against National Security and the Law of Nations; Conspiracy and Proposal to Commit Treason
232 Criminal Law; Crimes Against National Security and the Law of Nations; Misprision of Treason
233 Criminal Law; Crimes Against National Security and the Law of Nations; Espionage
234 Criminal Law; Crimes Against National Security and the Law of Nations; Inciting to War or Giving Motives for Reprisals
235 Criminal Law; Crimes Against National Security and the Law of Nations; Violation of Neutrality
236 Criminal Law; Crimes Against National Security and the Law of Nations; Correspondence with Hostile Country
237 Criminal Law; Crimes Against National Security and the Law of Nations; Flight to Enemy's Country
238 Criminal Law; Crimes Against National Security and the Law of Nations; Piracy in General
239 Criminal Law; Crimes Against National Security and the Law of Nations; Mutiny on the High Seas or in Philippine Waters
240 Criminal Law; Crimes Against National Security and the Law of Nations; Qualified Piracy
241 Criminal Law; Crimes Against the Fundamental Laws of the State
242 Criminal Law; Crimes Against the Fundamental Laws of the State; Arbitrary Detention
243 Criminal Law; Crimes Against the Fundamental Laws of the State; Delay in the Delivery of Detained Persons to the Proper Judicial Authorities
244 Criminal Law; Crimes Against the Fundamental Laws of the State; Delaying Release
245 Criminal Law; Crimes Against the Fundamental Laws of the State; Expulsion
246 Criminal Law; Crimes Against the Fundamental Laws of the State; Violation of Domicile
247 Criminal Law; Crimes Against the Fundamental Laws of the State; Search Warrants Maliciously Obtained and Abuse in the Service of Those Legally Obtained
248 Criminal Law; Crimes Against the Fundamental Laws of the State; Searching Domicile Without Witnesses
249 Criminal Law; Crimes Against the Fundamental Laws of the State; Prohibition, Interruption, and Dissolution of Peaceful Meetings
250 Criminal Law; Crimes Against the Fundamental Laws of the State; Interruption of Religious Worship
251 Criminal Law; Crimes Against the Fundamental Laws of the State; Offending the Religious Feelings
252 Criminal Law; Crimes Against Public Order
253 Criminal Law; Crimes Against Public Order; Rebellion or Insurrection; How Committed
254 Criminal Law; Crimes Against Public Order; Coup d'etat; How Committed
255 Criminal Law; Crimes Against Public Order; Penalty for Rebellion, Insurrection or Coup d'etat
256 Criminal Law; Crimes Against Public Order; Conspiracy and Proposal to Commit Coup d'etat
257 Criminal Law; Crimes Against Public Order; Conspiracy and Proposal to Commit Rebellion
258 Criminal Law; Crimes Against Public Order; Conspiracy and Proposal to Commit Insurrection
259 Criminal Law; Crimes Against Public Order; Disloyalty of Public Officers or Employees
260 Criminal Law; Crimes Against Public Order; Inciting to Rebellion or Insurrection
261 Criminal Law; Crimes Against Public Order; Sedition; How Committed
262 Criminal Law; Crimes Against Public Order; Penalty for Sedition
263 Criminal Law; Crimes Against Public Order; Conspiracy to Commit Sedition
264 Criminal Law; Crimes Against Public Order; Inciting to Sedition
265 Criminal Law; Crimes Against Public Order; Cases Where Other Offenses Are Committed
266 Criminal Law; Crimes Against Public Order; Acts Tending to Prevent the Meeting of the Legislature and Similar Bodies
267 Criminal Law; Crimes Against Public Order; Disturbance of Proceedings
268 Criminal Law; Crimes Against Public Order; Violation of Parliamentary Immunity
269 Criminal Law; Crimes Against Public Order; Illegal Assemblies
270 Criminal Law; Crimes Against Public Order; Illegal Associations
271 Criminal Law; Crimes Against Public Order; Direct Assaults
272 Criminal Law; Crimes Against Public Order; Direct Assaults; With Murder
273 Criminal Law; Crimes Against Public Order; Indirect Assaults
274 Criminal Law; Crimes Against Public Order; Disobedience to Summons Issued by the National Assembly, Its Committees or Subcommittees, by the Constitutional Commissions, Its Committees, Subcommittees or Divisions
275 Criminal Law; Crimes Against Public Order; Resistance and Disobedience to a Person in authority or the Agents of Such Person
276 Criminal Law; Crimes Against Public Order; Persons in authority; Who Shall Be Deemed as Such
277 Criminal Law; Crimes Against Public Order; Tumults and Other Disturbances of Public Orders
278 Criminal Law; Crimes Against Public Order; Unlawful Use of Means of Publication and Unlawful Utterances
279 Criminal Law; Crimes Against Public Order; Alarms and Scandals
280 Criminal Law; Crimes Against Public Order; Delivery of Prisoners from Jail
281 Criminal Law; Crimes Against Public Order; Evasion of Service of Sentence
282 Criminal Law; Crimes Against Public Order; Evasion of Service of Sentence on the Occasion of Disorders, Conflagrations, Earthquakes, or Other Calamities
283 Criminal Law; Crimes Against Public Order; Other Cases of Evasion of Service of Sentence
284 Criminal Law; Crimes Against Public Order; Commission of Another Crime During Service of Penalty Imposed for Another Previous Offense
285 Criminal Law; Crimes Against Public Interest
286 Criminal Law; Crimes Against Public Interest; Counterfeiting the Great Seal of the Government of the Philippine Islands
287 Criminal Law; Crimes Against Public Interest; Forging the Signature or Stamp of the Chief Executive
288 Criminal Law; Crimes Against Public Interest; Using Forged Signature or Counterfeit Seal or Stamp
289 Criminal Law; Crimes Against Public Interest; Making and Importing and Uttering False Coins
290 Criminal Law; Crimes Against Public Interest; Mutilation of Coins
291 Criminal Law; Crimes Against Public Interest; Importation and Utterance of Mutilated Coins
292 Criminal Law; Crimes Against Public Interest; Selling of False or Mutilated Coin, Without Connivance
293 Criminal Law; Crimes Against Public Interest; Forging Treasury or Bank Notes or Other Documents Payable to Bearer
294 Criminal Law; Crimes Against Public Interest; Forged Treasury or Bank Notes or Other Documents Payable to Bearer; Importing, and Uttering Such False or Forged Notes and Documents
295 Criminal Law; Crimes Against Public Interest; Counterfeiting, Importing and Uttering Instruments Payable to Bearer
296 Criminal Law; Crimes Against Public Interest; Illegal Possession and Use of False Treasury or Bank Notes and Other Instruments of Credit
297 Criminal Law; Crimes Against Public Interest; How Forgery is Committed
298 Criminal Law; Crimes Against Public Interest; Falsification of Legislative Documents
299 Criminal Law; Crimes Against Public Interest; Falsification by Public Officer, Employee or Notary or Ecclesiastic Minister
300 Criminal Law; Crimes Against Public Interest; Falsification by Private Individuals and Use of Falsified Documents
301 Criminal Law; Crimes Against Public Interest; Falsification of Wireless, Cable, Telegraph and Telephone Messages, and Use of Said Falsified Messages
302 Criminal Law; Crimes Against Public Interest; False Medical Certificates, False Certificates of Merit or Service, etc.
303 Criminal Law; Crimes Against Public Interest; Using False Certificates
304 Criminal Law; Crimes Against Public Interest; Manufacturing and Possession of Instruments or Implements for Falsification
305 Criminal Law; Crimes Against Public Interest; Usurpation of Authority or Official Functions
306 Criminal Law; Crimes Against Public Interest; Using Fictitious Name and Concealing True Name
307 Criminal Law; Crimes Against Public Interest; Illegal Use of Uniforms or Insignia
308 Criminal Law; Crimes Against Public Interest; False Testimony Against a Defendant
309 Criminal Law; Crimes Against Public Interest; False Testimony Favorable to the Defendant
310 Criminal Law; Crimes Against Public Interest; False Testimony in Civil Cases
311 Criminal Law; Crimes Against Public Interest; False Testimony in Other Cases and Perjury in Solemn Affirmation
312 Criminal Law; Crimes Against Public Interest; Offering False Testimony in Evidence
313 Criminal Law; Crimes Against Public Interest; Machinations in Public Auctions
314 Criminal Law; Crimes Against Public Interest; Monopolies and Combinations in Restraint of Trade
315 Criminal Law; Crimes Against Public Interest; Frauds in Commerce and Industry
316 Criminal Law; Crimes Against Public Interest; Importation and Disposition of Falsely Marked Articles or Merchandise Made of Gold, Silver, or Other Precious Metals or Their Alloys
317 Criminal Law; Crimes Against Public Interest; Substituting and Altering Trade-marks and Trade-names
318 Criminal Law; Crimes Against Public Interest; Unfair Competition and Fraudulent Registration of Trade-mark or Trade-name
319 Criminal Law; Crimes Relative to Opium and Other Prohibited Drugs
320 Criminal Law; Crimes Relative to Opium and Other Prohibited Drugs; Possession, Preparation and Use of Prohibited Drugs, and Maintenance of Opium Dens
321 Criminal Law; Crimes Relative to Opium and Other Prohibited Drugs; Keeper, Watchman and Visitor of Opium Den
322 Criminal Law; Crimes Relative to Opium and Other Prohibited Drugs; Importation and Sale of Prohibited Drugs
323 Criminal Law; Crimes Relative to Opium and Other Prohibited Drugs; Illegal Possession of Opium Pipe or Other Paraphernalia for the Use of Any Prohibited Drug
324 Criminal Law; Crimes Relative to Opium and Other Prohibited Drugs; Prescribing Opium Unnecessarily for a Patient
325 Criminal Law; Crimes Against Public Morals
326 Criminal Law; Crimes Against Public Morals; What Acts are Punishable in Gambling
327 Criminal Law; Crimes Against Public Morals; Importation, Sale and Possession of Lottery Tickets or Advertisements
328 Criminal Law; Crimes Against Public Morals; Betting in Sports Contests
329 Criminal Law; Crimes Against Public Morals; Illegal Betting on Horse Races
330 Criminal Law; Crimes Against Public Morals; Illegal Cockfighting
331 Criminal Law; Crimes Against Public Morals; Grave Scandal
332 Criminal Law; Crimes Against Public Morals; Immoral Doctrines, Obscene Publications and Exhibitions
333 Criminal Law; Crimes Against Public Morals; Vagrants and Prostitutes
334 Criminal Law; Crimes Committed by Public Officers
335 Criminal Law; Crimes Committed by Public Officers; Who are Public Officers
336 Criminal Law; Crimes Committed by Public Officers; Knowingly Rendering Unjust Judgment
337 Criminal Law; Crimes Committed by Public Officers; Judgment Rendered Through Negligence
338 Criminal Law; Crimes Committed by Public Officers; Unjust Interlocutory Order
339 Criminal Law; Crimes Committed by Public Officers; Malicious Delay in the Administration of Justice
340 Criminal Law; Crimes Committed by Public Officers; Prosecution of Offenses; Negligence and Tolerance
341 Criminal Law; Crimes Committed by Public Officers; Betrayal of Trust by an Attorney or Solicitor
342 Criminal Law; Crimes Committed by Public Officers; Direct Bribery
343 Criminal Law; Crimes Committed by Public Officers; Indirect Bribery
344 Criminal Law; Crimes Committed by Public Officers; Corruption of Public Officials
345 Criminal Law; Crimes Committed by Public Officers; Frauds Against the Public Treasury and Similar Offenses
346 Criminal Law; Crimes Committed by Public Officers; Other Frauds
347 Criminal Law; Crimes Committed by Public Officers; Prohibited Transactions
348 Criminal Law; Crimes Committed by Public Officers; Possession of Prohibited Interest by a Public Officer
349 Criminal Law; Crimes Committed by Public Officers; Malversation of Public Funds or Property
350 Criminal Law; Crimes Committed by Public Officers; Failure of Accountable Officer to Render Accounts
351 Criminal Law; Crimes Committed by Public Officers; Failure of a Responsible Public Officer to Render Accounts Before Leaving the Country
352 Criminal Law; Crimes Committed by Public Officers; Illegal Use of Public Funds or Property
353 Criminal Law; Crimes Committed by Public Officers; Failure to Make Delivery of Public Funds or Property
354 Criminal Law; Crimes Committed by Public Officers; Officers Included in the Preceding Provisions
355 Criminal Law; Crimes Committed by Public Officers; Conniving With or Consenting to Evasion
356 Criminal Law; Crimes Committed by Public Officers; Evasion Through Negligence
357 Criminal Law; Crimes Committed by Public Officers; Escape of Prisoner under the Custody of a Person Not a Public Officer
358 Criminal Law; Crimes Committed by Public Officers; Removal, Concealment or Destruction of Documents
359 Criminal Law; Crimes Committed by Public Officers; Officer Breaking Seal
360 Criminal Law; Crimes Committed by Public Officers; Opening of Closed Documents
361 Criminal Law; Crimes Committed by Public Officers; Revelation of Secrets by an Officer
362 Criminal Law; Crimes Committed by Public Officers; Open Disobedience
363 Criminal Law; Crimes Committed by Public Officers; Disobedience to Order of Superior Officer, When Said Order Was Suspended by Inferior Officer
364 Criminal Law; Crimes Committed by Public Officers; Refusal of Assistance
365 Criminal Law; Crimes Committed by Public Officers; Refusal to Discharge Elective Office
366 Criminal Law; Crimes Committed by Public Officers; Maltreatment of Prisoners
367 Criminal Law; Crimes Committed by Public Officers; Anticipation of Duties of a Public Office
368 Criminal Law; Crimes Committed by Public Officers; Prolonging Performance of Duties and Powers
369 Criminal Law; Crimes Committed by Public Officers; Abandonment of Office or Position
370 Criminal Law; Crimes Committed by Public Officers; Usurpation of Legislative Powers
371 Criminal Law; Crimes Committed by Public Officers; Usurpation of Executive Functions
372 Criminal Law; Crimes Committed by Public Officers; Usurpation of Judicial Functions
373 Criminal Law; Crimes Committed by Public Officers; Disobeying Request for Disqualification
374 Criminal Law; Crimes Committed by Public Officers; Orders or Requests by Executive Officers to Any Judicial Authority
375 Criminal Law; Crimes Committed by Public Officers; Unlawful Appointments
376 Criminal Law; Crimes Committed by Public Officers; Abuses Against Chastity
377 Criminal Law; Crimes Against Persons
378 Criminal Law; Crimes Against Persons; Parricide
379 Criminal Law; Crimes Against Persons; Death or Physical Injuries Inflicted Under Exceptional Circumstances
380 Criminal Law; Crimes Against Persons; Murder
381 Criminal Law; Crimes Against Persons; Murder; Elements
382 Criminal Law; Crimes Against Persons; Murder; Elements; Treachery
383 Criminal Law; Crimes Against Persons; Murder; Complex Crime of Direct Assault with Murder
384 Criminal Law; Crimes Against Persons; Homicide
385 Criminal Law; Crimes Against Persons; Homicide; Civil Liability
386 Criminal Law; Crimes Against Persons; Homicide; Civil Liability; Actual and Moral Damages
387 Criminal Law; Crimes Against Persons; Homicide; Civil Liability; Indemnity
388 Criminal Law; Crimes Against Persons; Homicide; Civil Liability; Temperate Damages
389 Criminal Law; Crimes Against Persons; Homicide; Penalty
390 Criminal Law; Crimes Against Persons; Penalty for Frustrated Parricide, Murder or Homicide
391 Criminal Law; Crimes Against Persons; Death Caused in a Tumultuous Affray
392 Criminal Law; Crimes Against Persons; Physical Injuries Inflicted in a Tumultuous Affray
393 Criminal Law; Crimes Against Persons; Giving Assistance to Suicide
394 Criminal Law; Crimes Against Persons; Discharge of Firearms
395 Criminal Law; Crimes Against Persons; Infanticide
396 Criminal Law; Crimes Against Persons; Intentional Abortion
397 Criminal Law; Crimes Against Persons; Unintentional Abortion
398 Criminal Law; Crimes Against Persons; Abortion Practiced by the Woman Herself or by Her Parents
399 Criminal Law; Crimes Against Persons; Abortion Practiced by a Physician or Midwife
400 Criminal Law; Crimes Against Persons; Dispensing of Abortives
401 Criminal Law; Crimes Against Persons; Responsibility of Participants in a Duel
402 Criminal Law; Crimes Against Persons; Challenging to a Duel
403 Criminal Law; Crimes Against Persons; Mutilation
404 Criminal Law; Crimes Against Persons; Serious Physical Injuries
405 Criminal Law; Crimes Against Persons; Administering Injurious Substances or Beverages
406 Criminal Law; Crimes Against Persons; Less Serious Physical Injuries
407 Criminal Law; Crimes Against Persons; Slight Physical Injuries and Maltreatment
408 Criminal Law; Crimes Against Persons; Rape
409 Criminal Law; Crimes Against Persons; Rape; Attempted Rape
410 Criminal Law; Crimes Against Persons; Rape; Attempted Rape; Definition
411 Criminal Law; Crimes Against Persons; Rape; Attempted Rape; Distinguished from Acts of Lasciviousness
412 Criminal Law; Crimes Against Persons; Rape; Elements
413 Criminal Law; Crimes Against Persons; Rape; Elements; Carnal Knowledge, Defined
414 Criminal Law; Crimes Against Persons; Rape; Qualified Rape
415 Criminal Law; Crimes Against Persons; Rape; Qualified Rape; Civil Liability
416 Criminal Law; Crimes Against Persons; Rape; Qualified Rape; Definition
417 Criminal Law; Crimes Against Persons; Rape; Qualified Rape; Penalty
418 Criminal Law; Crimes Against Persons; Rape; Penalties
419 Criminal Law; Crimes Against Persons; Rape; Effect of Pardon
420 Criminal Law; Crimes Against Persons; Rape; Presumptions
421 Criminal Law; Crimes Against Persons; Rape by Sexual Assault
422 Criminal Law; Crimes Against Personal Liberty and Security
423 Criminal Law; Crimes Against Personal Liberty and Security; Kidnapping and Serious Illegal Detention
424 Criminal Law; Crimes Against Personal Liberty and Security; Slight Illegal Detention
425 Criminal Law; Crimes Against Personal Liberty and Security; Unlawful Arrest
426 Criminal Law; Crimes Against Personal Liberty and Security; Kidnapping and Failure to Return a Minor
427 Criminal Law; Crimes Against Personal Liberty and Security; Inducing a Minor to Abandon his Home
428 Criminal Law; Crimes Against Personal Liberty and Security; Slavery
429 Criminal Law; Crimes Against Personal Liberty and Security; Exploitation of Child Labor
430 Criminal Law; Crimes Against Personal Liberty and Security; Services Rendered Under Compulsion in Payment of Debts
431 Criminal Law; Crimes Against Personal Liberty and Security; Abandonment of Persons in Danger
432 Criminal Law; Crimes Against Personal Liberty and Security; Abandonment of One's Own Victim
433 Criminal Law; Crimes Against Personal Liberty and Security; Abandoning a Minor
434 Criminal Law; Crimes Against Personal Liberty and Security; Death of The Minor Results
435 Criminal Law; Crimes Against Personal Liberty and Security; Life of The Minor Is Endangered
436 Criminal Law; Crimes Against Personal Liberty and Security; Abandonment of Minor by Person Entrusted With His Custody
437 Criminal Law; Crimes Against Personal Liberty and Security; Indifference of Parents
438 Criminal Law; Crimes Against Personal Liberty and Security; Exploitation of Minors
439 Criminal Law; Crimes Against Personal Liberty and Security; Additional Penalties for Other Offenses
440 Criminal Law; Crimes Against Personal Liberty and Security; Qualified Trespass to Dwelling
441 Criminal Law; Crimes Against Personal Liberty and Security; Other Forms of Trespass
442 Criminal Law; Crimes Against Personal Liberty and Security; Grave Threats
443 Criminal Law; Crimes Against Personal Liberty and Security; Light Threats
444 Criminal Law; Crimes Against Personal Liberty and Security; Bond for Good Behavior
445 Criminal Law; Crimes Against Personal Liberty and Security; Other Light Threats
446 Criminal Law; Crimes Against Personal Liberty and Security; Grave Coercions
447 Criminal Law; Crimes Against Personal Liberty and Security; Light Coercions
448 Criminal Law; Crimes Against Personal Liberty and Security; Other Similar Coercions; Compulsory Purchase of Merchandise
449 Criminal Law; Crimes Against Personal Liberty and Security; Other Similar Coercions; Compulsory Purchase of Merchandiseulsory Purchase of Merchandise
450 Criminal Law; Crimes Against Personal Liberty and Security; Formation, Maintenance and Prohibition of Combination of Capital or Labor Through Violence or Threats
451 Criminal Law; Crimes Against Personal Liberty and Security; Discovering Secrets Through Seizure of Correspondence
452 Criminal Law; Crimes Against Personal Liberty and Security; Revealing Secrets With Abuse of Office
453 Criminal Law; Crimes Against Personal Liberty and Security; Revelation of Industrial Secrets
454 Criminal Law; Crimes Against Property
455 Criminal Law; Crimes Against Property; Who are Guilty of Robbery
456 Criminal Law; Crimes Against Property; Robbery with Violence against or Intimidation of Persons
457 Criminal Law; Crimes Against Property; Robbery with Physical Injuries, Committed in an Uninhabited Place and by a Band
458 Criminal Law; Crimes Against Property; Definition of a Band and Penalty Incurred by the Members Thereof
459 Criminal Law; Crimes Against Property; Attempted and Frustrated Robbery Committed Under Certain Circumstances
460 Criminal Law; Crimes Against Property; Execution of Deeds by Means of Violence or Intimidation
461 Criminal Law; Crimes Against Property; Robbery in an Inhabited House or Public Building or Edifice Devoted to Worship
462 Criminal Law; Crimes Against Property; Robbery in an Uninhabited Place and by a Band
463 Criminal Law; Crimes Against Property; Inhabited House, Public Building or Building Dedicated to Religious Worship and Their Dependencies; Definition
464 Criminal Law; Crimes Against Property; Robbery in an Uninhabited Place or in a Private Building
465 Criminal Law; Crimes Against Property; Robbery of Cereals, Fruits, or Firewood in an Uninhabited Place or Private Building
466 Criminal Law; Crimes Against Property; Possession of Picklocks or Similar Tools
467 Criminal Law; Crimes Against Property; False Keys
468 Criminal Law; Crimes Against Property; Who are Brigands
469 Criminal Law; Crimes Against Property; Aiding and Abetting a Band of Brigands
470 Criminal Law; Crimes Against Property; Who are Liable for Theft
471 Criminal Law; Crimes Against Property; Penalties
472 Criminal Law; Crimes Against Property; Qualified Theft
473 Criminal Law; Crimes Against Property; Theft of the Property of the National Library and National Museum
474 Criminal Law; Crimes Against Property; Occupation of Real Property or Usurpation of Real Rights in Property
475 Criminal Law; Crimes Against Property; Altering Boundaries or Landmarks
476 Criminal Law; Crimes Against Property; Fraudulent Insolvency
477 Criminal Law; Crimes Against Property; Swindling (Estafa)
478 Criminal Law; Crimes Against Property; Swindling (Estafa); Civil Liability
479 Criminal Law; Crimes Against Property; Swindling (Estafa); Distinguished from B.P. 22 Case
480 Criminal Law; Crimes Against Property; Other Forms of Swindling
481 Criminal Law; Crimes Against Property; Swindling a Minor
482 Criminal Law; Crimes Against Property; Other Deceits
483 Criminal Law; Crimes Against Property; Removal, Sale or Pledge of Mortgaged Property
484 Criminal Law; Crimes Against Property; Destructive Arson
485 Criminal Law; Crimes Against Property; Other Forms of Arson
486 Criminal Law; Crimes Against Property; Cases of Arson Not Included in the Preceding Articles
487 Criminal Law; Crimes Against Property; Arson of Property of Small Value
488 Criminal Law; Crimes Against Property; Crimes Involving Destruction
489 Criminal Law; Crimes Against Property; Burning One's Own Property as a Means to Commit Arson
490 Criminal Law; Crimes Against Property; Setting Fire to Property Exclusively Owned by the Offender
491 Criminal Law; Crimes Against Property; Malicious Mischief; Who are Liable
492 Criminal Law; Crimes Against Property; Special Cases of Malicious Mischief
493 Criminal Law; Crimes Against Property; Other Mischiefs
494 Criminal Law; Crimes Against Property; Damages and Obstruction to Means of Communication
495 Criminal Law; Crimes Against Property; Destroying or Damaging Statues, Public Monuments or Paintings
496 Criminal Law; Crimes Against Property; Persons Exempt from Criminal Liability
497 Criminal Law; Crimes Against Chastity
498 Criminal Law; Crimes Against Chastity; Who are Guilty of Adultery
499 Criminal Law; Crimes Against Chastity; Concubinage
500 Criminal Law; Crimes Against Chastity; Acts of Lasciviousness
501 Criminal Law; Crimes Against Chastity; Qualified Seduction
502 Criminal Law; Crimes Against Chastity; Simple Seduction
503 Criminal Law; Crimes Against Chastity; Acts of Lasciviousness with the Consent of the Offended Party
504 Criminal Law; Crimes Against Chastity; Corruption of Minors
505 Criminal Law; Crimes Against Chastity; White Slave Trade
506 Criminal Law; Crimes Against Chastity; Forcible Abduction
507 Criminal Law; Crimes Against Chastity; Consented Abduction
508 Criminal Law; Crimes Against Chastity; Prosecution of the Crimes of Adultery, Concubinage, Seduction, Abduction, Rape and Acts of Lasciviousness
509 Criminal Law; Crimes Against Chastity; Civil Liability of Persons Guilty of Crimes against Chastity
510 Criminal Law; Crimes Against Chastity; Liability of Ascendants, Guardians, Teachers, or Other Persons Entrusted with the Custody of the Offended Party
511 Criminal Law; Crimes Against the Civil Status of Persons
512 Criminal Law; Crimes Against the Civil Status of Persons; Simulation of Births
513 Criminal Law; Crimes Against the Civil Status of Persons; Substitution of One Child for Another
514 Criminal Law; Crimes Against the Civil Status of Persons; Concealment or Abandonment of a Legitimate Child
515 Criminal Law; Crimes Against the Civil Status of Persons; Usurpation of Civil Status
516 Criminal Law; Crimes Against the Civil Status of Persons; Bigamy
517 Criminal Law; Crimes Against the Civil Status of Persons; Marriage Contracted against Provisions of Laws
518 Criminal Law; Crimes Against the Civil Status of Persons; Premature Marriages
519 Criminal Law; Crimes Against the Civil Status of Persons; Performance of Illegal Marriage Ceremony
520 Criminal Law; Crimes Against Honor
521 Criminal Law; Crimes Against Honor; Definition of Libel
522 Criminal Law; Crimes Against Honor; Requirement for Publicity
523 Criminal Law; Crimes Against Honor; Libel by Means of Writing or Similar Means
524 Criminal Law; Crimes Against Honor; Threatening to Publish and Offer to Prevent Such Publication for a Compensation
525 Criminal Law; Crimes Against Honor; Prohibited Publication of Acts Referred to in the Course of Official Proceedings
526 Criminal Law; Crimes Against Honor; Slander
527 Criminal Law; Crimes Against Honor; Slander by Deed
528 Criminal Law; Crimes Against Honor; Persons Responsible
529 Criminal Law; Crimes Against Honor; Proof of the Truth
530 Criminal Law; Crimes Against Honor; Libelous Remarks
531 Criminal Law; Crimes Against Honor; Incriminating Innocent Person
532 Criminal Law; Crimes Against Honor; Intriguing against Honor
533 Criminal Law; Quasi-Offenses
534 Criminal Law; Quasi-Offenses; Imprudence and Negligence
535 Criminal Law; Special Penal Laws
536 Criminal Law; Special Penal Laws; In General
537 Criminal Law; Special Penal Laws; In General; Indeterminate Sentence Law
538 Criminal Law; Special Penal Laws; In General; Indeterminate Sentence Law; Application
539 Criminal Law; Special Penal Laws; Anti-Graft and Corrupt Practices Act
540 Criminal Law; Special Penal Laws; Anti-Graft and Corrupt Practices Act; Sec, 3 (e)
541 Criminal Law; Special Penal Laws; Special Protection of Children Against Abuse, Exploitation and Discrimination Act
542 Criminal Law; Special Penal Laws; Special Protection of Children Against Abuse, Exploitation and Discrimination Act; Child Abuse
543 Criminal Law; Special Penal Laws; Social Security Law; Violation of Sec. 22 (a)
544 Criminal Law; Special Penal Laws
545 Criminal Law; Special Penal Laws; Comprehensive Dangerous Drugs Act
546 Criminal Law; Special Penal Laws; Comprehensive Dangerous Drugs Act; Illegal Possession of Dangerous Drugs
547 Criminal Law; Special Penal Laws; Comprehensive Dangerous Drugs Act; Illegal Sale of Drugs
548 Criminal Law; Special Penal Laws; Comprehensive Dangerous Drugs Act; Chain of Custody Rule
549 Criminal Law; Special Penal Laws; Carnapping
550 Criminal Law; Special Penal Laws; Carnapping; Elements

37
data/csvs/labor.csv

@ -0,0 +1,37 @@
"Labor Law"
"Labor Law; General Principles"
"Labor Law; Labor Standards"
"Labor Law; Labor Standards; Introduction "
"Labor Law; Labor Standards; Pre-employment "
"Labor Law; Labor Standards; Human Resources Development "
"Labor Law; Labor Standards; Employer-Employee Relationship "
"Labor Law; Labor Standards; Classes of Employees "
"Labor Law; Labor Standards; Conditions of Employment"
"Labor Law; Labor Standards; Wages "
"Labor Law; Labor Standards; Non-Diminution of Benefits "
"Labor Law; Labor Standards; Working Conditions for Special Groups of Employees "
"Labor Law; Labor Standards; Medical, Dental and Occupational Safety"
"Labor Law; Labor Standards; Employees Compensation and State Insurance Fund"
"Labor Law; Social Legislation"
"Labor Law; Social Legislation; Agrarian Reform "
"Labor Law; Social Legislation; Employees Compensation "
"Labor Law; Social Legislation; Government Service Insurance System "
"Labor Law; Social Legislation; Housing "
"Labor Law; Social Legislation; Medical and Health Insurance "
"Labor Law; Social Legislation; Social Security System "
"Labor Law; Social Legislation; Senior Citizens"
"Labor Law; Labor Relations"
"Labor Law; Labor Relations; National Labor Relations Commission "
"Labor Law; Labor Relations; Bureau of Labor Relations "
"Labor Law; Labor Relations; Basic Concepts "
"Labor Law; Labor Relations; Parties in Labor Relations and Labor Disputes "
"Labor Law; Labor Relations; Right to Self-Organization and Labor Organizations "
"Labor Law; Labor Relations; Union Representation "
"Labor Law; Labor Relations; Collective Bargaining: Process, Procedures and Issues "
"Labor Law; Labor Relations; Union Security "
"Labor Law; Labor Relations; Unfair Labor Practices "
"Labor Law; Labor Relations; Concerted Activities "
"Labor Law; Labor Relations; Labor Injunction "
"Labor Law; Labor Relations; Arbitration of Labor Disputes "
"Labor Law; Labor Relations; Post-Employment"
"Labor Law; Labor Relations; Transitory and Final Provisions"
1 Labor Law
2 Labor Law; General Principles
3 Labor Law; Labor Standards
4 Labor Law; Labor Standards; Introduction
5 Labor Law; Labor Standards; Pre-employment
6 Labor Law; Labor Standards; Human Resources Development
7 Labor Law; Labor Standards; Employer-Employee Relationship
8 Labor Law; Labor Standards; Classes of Employees
9 Labor Law; Labor Standards; Conditions of Employment
10 Labor Law; Labor Standards; Wages
11 Labor Law; Labor Standards; Non-Diminution of Benefits
12 Labor Law; Labor Standards; Working Conditions for Special Groups of Employees
13 Labor Law; Labor Standards; Medical, Dental and Occupational Safety
14 Labor Law; Labor Standards; Employees Compensation and State Insurance Fund
15 Labor Law; Social Legislation
16 Labor Law; Social Legislation; Agrarian Reform
17 Labor Law; Social Legislation; Employees Compensation
18 Labor Law; Social Legislation; Government Service Insurance System
19 Labor Law; Social Legislation; Housing
20 Labor Law; Social Legislation; Medical and Health Insurance
21 Labor Law; Social Legislation; Social Security System
22 Labor Law; Social Legislation; Senior Citizens
23 Labor Law; Labor Relations
24 Labor Law; Labor Relations; National Labor Relations Commission
25 Labor Law; Labor Relations; Bureau of Labor Relations
26 Labor Law; Labor Relations; Basic Concepts
27 Labor Law; Labor Relations; Parties in Labor Relations and Labor Disputes
28 Labor Law; Labor Relations; Right to Self-Organization and Labor Organizations
29 Labor Law; Labor Relations; Union Representation
30 Labor Law; Labor Relations; Collective Bargaining: Process, Procedures and Issues
31 Labor Law; Labor Relations; Union Security
32 Labor Law; Labor Relations; Unfair Labor Practices
33 Labor Law; Labor Relations; Concerted Activities
34 Labor Law; Labor Relations; Labor Injunction
35 Labor Law; Labor Relations; Arbitration of Labor Disputes
36 Labor Law; Labor Relations; Post-Employment
37 Labor Law; Labor Relations; Transitory and Final Provisions

120
data/csvs/legal.csv

@ -0,0 +1,120 @@
"Legal Ethics"
"Legal Ethics; Preliminary Matters"
"Legal Ethics; The Lawyer and Society"
"Legal Ethics; The Lawyer and Society; Canon 1"
"Legal Ethics; The Lawyer and Society; Canon 1; Rule 1.01"
"Legal Ethics; The Lawyer and Society; Canon 1; Rule 1.02"
"Legal Ethics; The Lawyer and Society; Canon 1; Rule 1.03"
"Legal Ethics; The Lawyer and Society; Canon 1; Rule 1.04"
"Legal Ethics; The Lawyer and Society; Canon 2"
"Legal Ethics; The Lawyer and Society; Canon 2; Rule 2.01"
"Legal Ethics; The Lawyer and Society; Canon 2; Rule 2.02"
"Legal Ethics; The Lawyer and Society; Canon 2; Rule 2.03"
"Legal Ethics; The Lawyer and Society; Canon 2; Rule 2.04"
"Legal Ethics; The Lawyer and Society; Canon 3"
"Legal Ethics; The Lawyer and Society; Canon 3; Rule 3.01"
"Legal Ethics; The Lawyer and Society; Canon 3; Rule 3.02"
"Legal Ethics; The Lawyer and Society; Canon 3; Rule 3.03"
"Legal Ethics; The Lawyer and Society; Canon 3; Rule 3.04"
"Legal Ethics; The Lawyer and Society; Canon 4"
"Legal Ethics; The Lawyer and Society; Canon 5"
"Legal Ethics; The Lawyer and Society; Canon 6"
"Legal Ethics; The Lawyer and Society; Canon 6; Rule 6.01"
"Legal Ethics; The Lawyer and Society; Canon 6; Rule 6.02"
"Legal Ethics; The Lawyer and Society; Canon 6; Rule 6.03"
"Legal Ethics; The Lawyer and the Legal Profession"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 7"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 7; Rule 7.01"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 7; Rule 7.02"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 7; Rule 7.03"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 8"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 8; Rule 8.01"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 8; Rule 8.02"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 9"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 9; Rule 9.01"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 9; Rule 9.02"
"Legal Ethics; Lawyer and the Courts"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 10"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 10; Rule 10.01"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 10; Rule 10.02"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 10; Rule 10.03"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 11"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 11; Rule 11.01"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 11; Rule 11.02"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 11; Rule 11.03"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 11; Rule 11.04"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 11; Rule 11.05"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 12"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 12; Rule 12.01"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 12; Rule 12.02"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 12; Rule 12.03"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 12; Rule 12.04"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 12; Rule 12.05"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 12; Rule 12.06"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 12; Rule 12.07"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 12; Rule 12.08"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 13"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 13; Rule 13.01"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 13; Rule 13.02"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 13; Rule 13.03"
"Legal Ethics; The Lawyer and Client"
"Legal Ethics; The Lawyer and Client; Canon 14"
"Legal Ethics; The Lawyer and Client; Canon 14; Rule 14.01"
"Legal Ethics; The Lawyer and Client; Canon 14; Rule 14.02"
"Legal Ethics; The Lawyer and Client; Canon 14; Rule 14.03"
"Legal Ethics; The Lawyer and Client; Canon 14; Rule 14.04"
"Legal Ethics; The Lawyer and Client; Canon 15"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 15; Rule 15.01"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 15; Rule 15.02"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 15; Rule 15.03"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 15; Rule 15.04"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 15; Rule 15.05"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 15; Rule 15.06"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 15; Rule 15.07"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 15; Rule 15.08"
"Legal Ethics; The Lawyer and Client; Canon 16"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 16; Rule 16.01"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 16; Rule 16.02"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 16; Rule 16.03"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 16; Rule 16.04"
"Legal Ethics; The Lawyer and Client; Canon 17"
"Legal Ethics; The Lawyer and Client; Canon 18"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 18; Rule 18.01"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 18; Rule 18.02"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 18; Rule 18.03"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 18; Rule 18.04"
"Legal Ethics; The Lawyer and Client; Canon 19"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 19; Rule 19.01"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 19; Rule 19.02"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 19; Rule 19.03"
"Legal Ethics; The Lawyer and Client; Canon 20"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 20; Rule 20.01"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 20; Rule 20.02"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 20; Rule 20.03"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 20; Rule 20.04"
"Legal Ethics; The Lawyer and Client; Canon 21"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 21; Rule 21.01"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 21; Rule 21.02"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 21; Rule 21.03"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 21; Rule 21.04"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 21; Rule 21.05"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 21; Rule 21.06"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 21; Rule 21.07"
"Legal Ethics; The Lawyer and Client; Canon 22"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 22; Rule 22.01"
"Legal Ethics; The Lawyer and the Legal Profession; Canon 22; Rule 22.02"
"Legal Ethics; Discipline of Lawyers"
"Judicial Ethics"
"Judicial Ethics; Preliminary Matters"
"Judicial Ethics; New Code of Judicial Conduct for the Philippine Judiciary"
"Judicial Ethics; New Code of Judicial Conduct for the Philippine Judiciary; Canon 1, Independence"
"Judicial Ethics; New Code of Judicial Conduct for the Philippine Judiciary; Canon 2, Integrity"
"Judicial Ethics; New Code of Judicial Conduct for the Philippine Judiciary; Canon 3, Impartiality"
"Judicial Ethics; New Code of Judicial Conduct for the Philippine Judiciary; Canon 4, Propriety"
"Judicial Ethics; New Code of Judicial Conduct for the Philippine Judiciary; Canon 5, Equality"
"Judicial Ethics; New Code of Judicial Conduct for the Philippine Judiciary; Canon 6, Competence and Diligence"
"Judicial Ethics; Disqualification of Judges"
"Judicial Ethics; Discipline of Judges"
"Judicial Ethics; Liabilities of Judges"
"Notary Public"
"Notary Public; Where Notary Public Is A Lawyer"
1 Legal Ethics
2 Legal Ethics; Preliminary Matters
3 Legal Ethics; The Lawyer and Society
4 Legal Ethics; The Lawyer and Society; Canon 1
5 Legal Ethics; The Lawyer and Society; Canon 1; Rule 1.01
6 Legal Ethics; The Lawyer and Society; Canon 1; Rule 1.02
7 Legal Ethics; The Lawyer and Society; Canon 1; Rule 1.03
8 Legal Ethics; The Lawyer and Society; Canon 1; Rule 1.04
9 Legal Ethics; The Lawyer and Society; Canon 2
10 Legal Ethics; The Lawyer and Society; Canon 2; Rule 2.01
11 Legal Ethics; The Lawyer and Society; Canon 2; Rule 2.02
12 Legal Ethics; The Lawyer and Society; Canon 2; Rule 2.03
13 Legal Ethics; The Lawyer and Society; Canon 2; Rule 2.04
14 Legal Ethics; The Lawyer and Society; Canon 3
15 Legal Ethics; The Lawyer and Society; Canon 3; Rule 3.01
16 Legal Ethics; The Lawyer and Society; Canon 3; Rule 3.02
17 Legal Ethics; The Lawyer and Society; Canon 3; Rule 3.03
18 Legal Ethics; The Lawyer and Society; Canon 3; Rule 3.04
19 Legal Ethics; The Lawyer and Society; Canon 4
20 Legal Ethics; The Lawyer and Society; Canon 5
21 Legal Ethics; The Lawyer and Society; Canon 6
22 Legal Ethics; The Lawyer and Society; Canon 6; Rule 6.01
23 Legal Ethics; The Lawyer and Society; Canon 6; Rule 6.02
24 Legal Ethics; The Lawyer and Society; Canon 6; Rule 6.03
25 Legal Ethics; The Lawyer and the Legal Profession
26 Legal Ethics; The Lawyer and the Legal Profession; Canon 7
27 Legal Ethics; The Lawyer and the Legal Profession; Canon 7; Rule 7.01
28 Legal Ethics; The Lawyer and the Legal Profession; Canon 7; Rule 7.02
29 Legal Ethics; The Lawyer and the Legal Profession; Canon 7; Rule 7.03
30 Legal Ethics; The Lawyer and the Legal Profession; Canon 8
31 Legal Ethics; The Lawyer and the Legal Profession; Canon 8; Rule 8.01
32 Legal Ethics; The Lawyer and the Legal Profession; Canon 8; Rule 8.02
33 Legal Ethics; The Lawyer and the Legal Profession; Canon 9
34 Legal Ethics; The Lawyer and the Legal Profession; Canon 9; Rule 9.01
35 Legal Ethics; The Lawyer and the Legal Profession; Canon 9; Rule 9.02
36 Legal Ethics; Lawyer and the Courts
37 Legal Ethics; The Lawyer and the Legal Profession; Canon 10
38 Legal Ethics; The Lawyer and the Legal Profession; Canon 10; Rule 10.01
39 Legal Ethics; The Lawyer and the Legal Profession; Canon 10; Rule 10.02
40 Legal Ethics; The Lawyer and the Legal Profession; Canon 10; Rule 10.03
41 Legal Ethics; The Lawyer and the Legal Profession; Canon 11
42 Legal Ethics; The Lawyer and the Legal Profession; Canon 11; Rule 11.01
43 Legal Ethics; The Lawyer and the Legal Profession; Canon 11; Rule 11.02
44 Legal Ethics; The Lawyer and the Legal Profession; Canon 11; Rule 11.03
45 Legal Ethics; The Lawyer and the Legal Profession; Canon 11; Rule 11.04
46 Legal Ethics; The Lawyer and the Legal Profession; Canon 11; Rule 11.05
47 Legal Ethics; The Lawyer and the Legal Profession; Canon 12
48 Legal Ethics; The Lawyer and the Legal Profession; Canon 12; Rule 12.01
49 Legal Ethics; The Lawyer and the Legal Profession; Canon 12; Rule 12.02
50 Legal Ethics; The Lawyer and the Legal Profession; Canon 12; Rule 12.03
51 Legal Ethics; The Lawyer and the Legal Profession; Canon 12; Rule 12.04
52 Legal Ethics; The Lawyer and the Legal Profession; Canon 12; Rule 12.05
53 Legal Ethics; The Lawyer and the Legal Profession; Canon 12; Rule 12.06
54 Legal Ethics; The Lawyer and the Legal Profession; Canon 12; Rule 12.07
55 Legal Ethics; The Lawyer and the Legal Profession; Canon 12; Rule 12.08
56 Legal Ethics; The Lawyer and the Legal Profession; Canon 13
57 Legal Ethics; The Lawyer and the Legal Profession; Canon 13; Rule 13.01
58 Legal Ethics; The Lawyer and the Legal Profession; Canon 13; Rule 13.02
59 Legal Ethics; The Lawyer and the Legal Profession; Canon 13; Rule 13.03
60 Legal Ethics; The Lawyer and Client
61 Legal Ethics; The Lawyer and Client; Canon 14
62 Legal Ethics; The Lawyer and Client; Canon 14; Rule 14.01
63 Legal Ethics; The Lawyer and Client; Canon 14; Rule 14.02
64 Legal Ethics; The Lawyer and Client; Canon 14; Rule 14.03
65 Legal Ethics; The Lawyer and Client; Canon 14; Rule 14.04
66 Legal Ethics; The Lawyer and Client; Canon 15
67 Legal Ethics; The Lawyer and the Legal Profession; Canon 15; Rule 15.01
68 Legal Ethics; The Lawyer and the Legal Profession; Canon 15; Rule 15.02
69 Legal Ethics; The Lawyer and the Legal Profession; Canon 15; Rule 15.03
70 Legal Ethics; The Lawyer and the Legal Profession; Canon 15; Rule 15.04
71 Legal Ethics; The Lawyer and the Legal Profession; Canon 15; Rule 15.05
72 Legal Ethics; The Lawyer and the Legal Profession; Canon 15; Rule 15.06
73 Legal Ethics; The Lawyer and the Legal Profession; Canon 15; Rule 15.07
74 Legal Ethics; The Lawyer and the Legal Profession; Canon 15; Rule 15.08
75 Legal Ethics; The Lawyer and Client; Canon 16
76 Legal Ethics; The Lawyer and the Legal Profession; Canon 16; Rule 16.01
77 Legal Ethics; The Lawyer and the Legal Profession; Canon 16; Rule 16.02
78 Legal Ethics; The Lawyer and the Legal Profession; Canon 16; Rule 16.03
79 Legal Ethics; The Lawyer and the Legal Profession; Canon 16; Rule 16.04
80 Legal Ethics; The Lawyer and Client; Canon 17
81 Legal Ethics; The Lawyer and Client; Canon 18
82 Legal Ethics; The Lawyer and the Legal Profession; Canon 18; Rule 18.01
83 Legal Ethics; The Lawyer and the Legal Profession; Canon 18; Rule 18.02
84 Legal Ethics; The Lawyer and the Legal Profession; Canon 18; Rule 18.03
85 Legal Ethics; The Lawyer and the Legal Profession; Canon 18; Rule 18.04
86 Legal Ethics; The Lawyer and Client; Canon 19
87 Legal Ethics; The Lawyer and the Legal Profession; Canon 19; Rule 19.01
88 Legal Ethics; The Lawyer and the Legal Profession; Canon 19; Rule 19.02
89 Legal Ethics; The Lawyer and the Legal Profession; Canon 19; Rule 19.03
90 Legal Ethics; The Lawyer and Client; Canon 20
91 Legal Ethics; The Lawyer and the Legal Profession; Canon 20; Rule 20.01
92 Legal Ethics; The Lawyer and the Legal Profession; Canon 20; Rule 20.02
93 Legal Ethics; The Lawyer and the Legal Profession; Canon 20; Rule 20.03
94 Legal Ethics; The Lawyer and the Legal Profession; Canon 20; Rule 20.04
95 Legal Ethics; The Lawyer and Client; Canon 21
96 Legal Ethics; The Lawyer and the Legal Profession; Canon 21; Rule 21.01
97 Legal Ethics; The Lawyer and the Legal Profession; Canon 21; Rule 21.02
98 Legal Ethics; The Lawyer and the Legal Profession; Canon 21; Rule 21.03
99 Legal Ethics; The Lawyer and the Legal Profession; Canon 21; Rule 21.04
100 Legal Ethics; The Lawyer and the Legal Profession; Canon 21; Rule 21.05
101 Legal Ethics; The Lawyer and the Legal Profession; Canon 21; Rule 21.06
102 Legal Ethics; The Lawyer and the Legal Profession; Canon 21; Rule 21.07
103 Legal Ethics; The Lawyer and Client; Canon 22
104 Legal Ethics; The Lawyer and the Legal Profession; Canon 22; Rule 22.01
105 Legal Ethics; The Lawyer and the Legal Profession; Canon 22; Rule 22.02
106 Legal Ethics; Discipline of Lawyers
107 Judicial Ethics
108 Judicial Ethics; Preliminary Matters
109 Judicial Ethics; New Code of Judicial Conduct for the Philippine Judiciary
110 Judicial Ethics; New Code of Judicial Conduct for the Philippine Judiciary; Canon 1, Independence
111 Judicial Ethics; New Code of Judicial Conduct for the Philippine Judiciary; Canon 2, Integrity
112 Judicial Ethics; New Code of Judicial Conduct for the Philippine Judiciary; Canon 3, Impartiality
113 Judicial Ethics; New Code of Judicial Conduct for the Philippine Judiciary; Canon 4, Propriety
114 Judicial Ethics; New Code of Judicial Conduct for the Philippine Judiciary; Canon 5, Equality
115 Judicial Ethics; New Code of Judicial Conduct for the Philippine Judiciary; Canon 6, Competence and Diligence
116 Judicial Ethics; Disqualification of Judges
117 Judicial Ethics; Discipline of Judges
118 Judicial Ethics; Liabilities of Judges
119 Notary Public
120 Notary Public; Where Notary Public Is A Lawyer

117
data/csvs/political.csv

@ -0,0 +1,117 @@
"Political Law"
"Political Law; Administrative Law; Administrative Adjudication"
"Political Law; Administrative Law; Administrative Adjudication; Appeal to the Office of the President"
"Political Law; Administrative Law; Administrative Adjudication; Credibility of Witnesses"
"Political Law; Administrative Law; Administrative Adjudication; Due Process"
"Political Law; Administrative Law; Administrative Adjudication; Exhaustion of Administrative Remedies"
"Political Law; Administrative Law; Administrative Adjudication; Jurisdiction"
"Political Law; Administrative Law; Administrative Adjudication; Jurisdiction; Doctrine of Primary Jurisdiction"
"Political Law; Administrative Law; Administrative Adjudication; Right to Litigate Must Be Exercised in Good Faith"
"Political Law; Administrative Law; Administrative Enforcement and Sanctions "
"Political Law; Administrative Law; Delegation of Powers to Administrative Agencies"
"Political Law; Administrative Law; Doctrine of Qualified Political Agency"
"Political Law; Administrative Law; Electric Cooperatives"
"Political Law; Administrative Law; Electric Cooperatives; Cooperative Code (Republic Act No. 6939)"
"Political Law; Administrative Law; Electric Cooperatives; Cooperative Code (Republic Act No. 6939); Electric cooperatives must qualify and register with the Cooperative Development Authority (CDA) to be outside the jurisdiction of National Electrification Administration"
"Political Law; Administrative Law; Electric Cooperatives; Philippine Cooperative Code of 2008 (Republic Act No. 9520)"
"Political Law; Administrative Law; Electric Cooperatives; Philippine Cooperative Code of 2008 (Republic Act No. 9520); Distinction between electric cooperatives registered under EPIRA and those registered under the Cooperative Code"
"Political Law; Administrative Law; General Principles"
"Political Law; Administrative Law; Judicial Review"
"Political Law; Administrative Law; Powers and Functions of Administrative Bodies"
"Political Law; Administrative Law; Powers and Functions of Administrative Bodies; Power to grant criminal immunity"
"Political Law; Administrative Law; Powers and Functions of Administrative Bodies; Quasi-judicial functions encompassing special investigatory and prosecutorial powers"
"Political Law; Administrative Law; Powers and Functions of Administrative Bodies; Quasi-Legislative or Rule Making Power"
"Political Law; Administrative Law; Powers and Functions of Administrative Bodies; Quasi-Legislative or Rule Making Power; Delegation of Legislative Power, When Valid"
"Political Law; Administrative Law; Separation of Powers"
"Political Law; Constitutional Law; In General"
"Political Law; Constitutional Law; Accountability of Public Officers"
"Political Law; Constitutional Law; Agrarian and Natural Resources Reform"
"Political Law; Constitutional Law; Amendment"
"Political Law; Constitutional Law; Amendments or Revisions"
"Political Law; Constitutional Law; Citizenship"
"Political Law; Constitutional Law; Constitutional Commissions"
"Political Law; Constitutional Law; Declaration of Principles and State Policies"
"Political Law; Constitutional Law; Delegation of Powers"
"Political Law; Constitutional Law; Education, Science and Technology, Arts, Culture, and Sports"
"Political Law; Constitutional Law; Executive Department"
"Political Law; Constitutional Law; Fundamental Powers of the State"
"Political Law; Constitutional Law; General Provisions"
"Political Law; Constitutional Law; Health"
"Political Law; Constitutional Law; Human Rights"
"Political Law; Constitutional Law; Judicial Department"
"Political Law; Constitutional Law; Labor"
"Political Law; Constitutional Law; Local Government"
"Political Law; Constitutional Law; National Economy and Patrimony"
"Political Law; Constitutional Law; National Territory"
"Political Law; Constitutional Law; Political Law"
"Political Law; Constitutional Law; Power of Judicial Review"
"Political Law; Constitutional Law; Role and Rights of People's Organizations"
"Political Law; Constitutional Law; Separation of Powers"
"Political Law; Constitutional Law; Social Justice and Human Rights"
"Political Law; Constitutional Law; Suffrage"
"Political Law; Constitutional Law; The Bill of Rights"
"Political Law; Constitutional Law; The Family"
"Political Law; Constitutional Law; The Legislative Department"
"Political Law; Constitutional Law; The Philippine Constitution"
"Political Law; Constitutional Law; Transitory Provisions"
"Political Law; Constitutional Law; Urban Land Reform and Housing"
"Political Law; Constitutional Law; Women"
"Political Law; Election Law"
"Political Law; Election Law; Contested Elections "
"Political Law; Election Law; Election Campaign and Expenditures "
"Political Law; Election Law; Election Offenses"
"Political Law; Election Law; General Principles "
"Political Law; Election Law; Requirements Before Election "
"Political Law; Election Law; The Commission on Elections "
"Political Law; Election Law; The Election "
"Political Law; Public Corporations"
"Political Law; Public Corporations; Appointive Officials"
"Political Law; Public Corporations; Attributes of Local Government Units"
"Political Law; Public Corporations; Creation, Conversion and Abolition of Local Government Units"
"Political Law; Public Corporations; Disciplinary Actions"
"Political Law; Public Corporations; Elective Officials"
"Political Law; Public Corporations; General Powers of Local Government Units"
"Political Law; Public Corporations; General Principles"
"Political Law; Public Corporations; Human Resources and Development"
"Political Law; Public Corporations; Intergovernmental Relations"
"Political Law; Public Corporations; Liabilities of Local Government Units"
"Political Law; Public Corporations; Local Government Units"
"Political Law; Public Corporations; Local Legislation"
"Political Law; Public Corporations; Recall"
"Political Law; Public International Law"
"Political Law; Public International Law; General Principles "
"Political Law; Public International Law; Nationality and Statelessness "
"Political Law; Public International Law; Recognition "
"Political Law; Public International Law; Rights of States "
"Political Law; Public International Law; Settlement of International Disputes "
"Political Law; Public International Law; Sources of International Law "
"Political Law; Public International Law; Territory and Jurisdiction "
"Political Law; Public International Law; The Concept of the State "
"Political Law; Public International Law; The International Community "
"Political Law; Public International Law; The Right of Legation "
"Political Law; Public International Law; Treaties "
"Political Law; Public International Law; Treatment of Aliens "
"Political Law; Public International Law; War"
"Political Law; The Law on Public Officers"
"Political Law; The Law on Public Officers; Acquisition of Right or Title to Office"
"Political Law; The Law on Public Officers; Definitions, Distinctions, and Classifications"
"Political Law; The Law on Public Officers; Disabilities of Public Officers "
"Political Law; The Law on Public Officers; Eligibility and Qualifications"
"Political Law; The Law on Public Officers; Liabilities of Public Officers "
"Political Law; The Law on Public Officers; Powers, Duties, and Norms of Conduct of Public Officers"
"Political Law; The Law on Public Officers; Powers, Duties, and Norms of Conduct of Public Officers; Accountability of Public Officers"
"Political Law; The Law on Public Officers; Powers, Duties, and Norms of Conduct of Public Officers; Civil Service Law"
"Political Law; The Law on Public Officers; Powers, Duties, and Norms of Conduct of Public Officers; Civil Service Law; Positions in the Career Executive Service"
"Political Law; The Law on Public Officers; Powers, Duties, and Norms of Conduct of Public Officers; Civil Service Law; Positions in the Career Executive Service; Assistant Schools Division Superintendent"
"Political Law; The Law on Public Officers; Powers, Duties, and Norms of Conduct of Public Officers; Civil Service Law; Positions in the Career Executive Service; Criteria"
"Political Law; The Law on Public Officers; Powers, Duties, and Norms of Conduct of Public Officers; Civil Service Law; Positions in the Career Executive Service; Mandamus to attest to permanence of appointment"
"Political Law; The Law on Public Officers; Rights and Privileges of Public Officers "
"Political Law; The Law on Public Officers; Termination of Official Functions"
"Political Law; The Law on Public Officers; Termination of Official Functions; Civil Service Law"
"Political Law; The Law on Public Officers; Termination of Official Functions; Civil Service Law; Dismissal"
"Political Law; The Law on Public Officers; Termination of Official Functions; Civil Service Law; Dismissal; Dishonesty"
"Political Law; The Law on Public Officers; Termination of Official Functions; Civil Service Law; Dismissal; Gross Inefficiency"
"Political Law; The Law on Public Officers; Termination of Official Functions; Civil Service Law; Dismissal; Gross Misconduct"
"Political Law; The Law on Public Officers; Termination of Official Functions; Civil Service Law; Dismissal; Illegal Dismissal"
"Political Law; The Law on Public Officers; Termination of Official Functions; Civil Service Law; Dismissal; Misconduct"
"Political Law; The Law on Public Officers; Termination of Official Functions; Security of Tenure"
1 Political Law
2 Political Law; Administrative Law; Administrative Adjudication
3 Political Law; Administrative Law; Administrative Adjudication; Appeal to the Office of the President
4 Political Law; Administrative Law; Administrative Adjudication; Credibility of Witnesses
5 Political Law; Administrative Law; Administrative Adjudication; Due Process
6 Political Law; Administrative Law; Administrative Adjudication; Exhaustion of Administrative Remedies
7 Political Law; Administrative Law; Administrative Adjudication; Jurisdiction
8 Political Law; Administrative Law; Administrative Adjudication; Jurisdiction; Doctrine of Primary Jurisdiction
9 Political Law; Administrative Law; Administrative Adjudication; Right to Litigate Must Be Exercised in Good Faith
10 Political Law; Administrative Law; Administrative Enforcement and Sanctions
11 Political Law; Administrative Law; Delegation of Powers to Administrative Agencies
12 Political Law; Administrative Law; Doctrine of Qualified Political Agency
13 Political Law; Administrative Law; Electric Cooperatives
14 Political Law; Administrative Law; Electric Cooperatives; Cooperative Code (Republic Act No. 6939)
15 Political Law; Administrative Law; Electric Cooperatives; Cooperative Code (Republic Act No. 6939); Electric cooperatives must qualify and register with the Cooperative Development Authority (CDA) to be outside the jurisdiction of National Electrification Administration
16 Political Law; Administrative Law; Electric Cooperatives; Philippine Cooperative Code of 2008 (Republic Act No. 9520)
17 Political Law; Administrative Law; Electric Cooperatives; Philippine Cooperative Code of 2008 (Republic Act No. 9520); Distinction between electric cooperatives registered under EPIRA and those registered under the Cooperative Code
18 Political Law; Administrative Law; General Principles
19 Political Law; Administrative Law; Judicial Review
20 Political Law; Administrative Law; Powers and Functions of Administrative Bodies
21 Political Law; Administrative Law; Powers and Functions of Administrative Bodies; Power to grant criminal immunity
22 Political Law; Administrative Law; Powers and Functions of Administrative Bodies; Quasi-judicial functions encompassing special investigatory and prosecutorial powers
23 Political Law; Administrative Law; Powers and Functions of Administrative Bodies; Quasi-Legislative or Rule Making Power
24 Political Law; Administrative Law; Powers and Functions of Administrative Bodies; Quasi-Legislative or Rule Making Power; Delegation of Legislative Power, When Valid
25 Political Law; Administrative Law; Separation of Powers
26 Political Law; Constitutional Law; In General
27 Political Law; Constitutional Law; Accountability of Public Officers
28 Political Law; Constitutional Law; Agrarian and Natural Resources Reform
29 Political Law; Constitutional Law; Amendment
30 Political Law; Constitutional Law; Amendments or Revisions
31 Political Law; Constitutional Law; Citizenship
32 Political Law; Constitutional Law; Constitutional Commissions
33 Political Law; Constitutional Law; Declaration of Principles and State Policies
34 Political Law; Constitutional Law; Delegation of Powers
35 Political Law; Constitutional Law; Education, Science and Technology, Arts, Culture, and Sports
36 Political Law; Constitutional Law; Executive Department
37 Political Law; Constitutional Law; Fundamental Powers of the State
38 Political Law; Constitutional Law; General Provisions
39 Political Law; Constitutional Law; Health
40 Political Law; Constitutional Law; Human Rights
41 Political Law; Constitutional Law; Judicial Department
42 Political Law; Constitutional Law; Labor
43 Political Law; Constitutional Law; Local Government
44 Political Law; Constitutional Law; National Economy and Patrimony
45 Political Law; Constitutional Law; National Territory
46 Political Law; Constitutional Law; Political Law
47 Political Law; Constitutional Law; Power of Judicial Review
48 Political Law; Constitutional Law; Role and Rights of People's Organizations
49 Political Law; Constitutional Law; Separation of Powers
50 Political Law; Constitutional Law; Social Justice and Human Rights
51 Political Law; Constitutional Law; Suffrage
52 Political Law; Constitutional Law; The Bill of Rights
53 Political Law; Constitutional Law; The Family
54 Political Law; Constitutional Law; The Legislative Department
55 Political Law; Constitutional Law; The Philippine Constitution
56 Political Law; Constitutional Law; Transitory Provisions
57 Political Law; Constitutional Law; Urban Land Reform and Housing
58 Political Law; Constitutional Law; Women
59 Political Law; Election Law
60 Political Law; Election Law; Contested Elections
61 Political Law; Election Law; Election Campaign and Expenditures
62 Political Law; Election Law; Election Offenses
63 Political Law; Election Law; General Principles
64 Political Law; Election Law; Requirements Before Election
65 Political Law; Election Law; The Commission on Elections
66 Political Law; Election Law; The Election
67 Political Law; Public Corporations
68 Political Law; Public Corporations; Appointive Officials
69 Political Law; Public Corporations; Attributes of Local Government Units
70 Political Law; Public Corporations; Creation, Conversion and Abolition of Local Government Units
71 Political Law; Public Corporations; Disciplinary Actions
72 Political Law; Public Corporations; Elective Officials
73 Political Law; Public Corporations; General Powers of Local Government Units
74 Political Law; Public Corporations; General Principles
75 Political Law; Public Corporations; Human Resources and Development
76 Political Law; Public Corporations; Intergovernmental Relations
77 Political Law; Public Corporations; Liabilities of Local Government Units
78 Political Law; Public Corporations; Local Government Units
79 Political Law; Public Corporations; Local Legislation
80 Political Law; Public Corporations; Recall
81 Political Law; Public International Law
82 Political Law; Public International Law; General Principles
83 Political Law; Public International Law; Nationality and Statelessness
84 Political Law; Public International Law; Recognition
85 Political Law; Public International Law; Rights of States
86 Political Law; Public International Law; Settlement of International Disputes
87 Political Law; Public International Law; Sources of International Law
88 Political Law; Public International Law; Territory and Jurisdiction
89 Political Law; Public International Law; The Concept of the State
90 Political Law; Public International Law; The International Community
91 Political Law; Public International Law; The Right of Legation
92 Political Law; Public International Law; Treaties
93 Political Law; Public International Law; Treatment of Aliens
94 Political Law; Public International Law; War
95 Political Law; The Law on Public Officers
96 Political Law; The Law on Public Officers; Acquisition of Right or Title to Office
97 Political Law; The Law on Public Officers; Definitions, Distinctions, and Classifications
98 Political Law; The Law on Public Officers; Disabilities of Public Officers
99 Political Law; The Law on Public Officers; Eligibility and Qualifications
100 Political Law; The Law on Public Officers; Liabilities of Public Officers
101 Political Law; The Law on Public Officers; Powers, Duties, and Norms of Conduct of Public Officers
102 Political Law; The Law on Public Officers; Powers, Duties, and Norms of Conduct of Public Officers; Accountability of Public Officers
103 Political Law; The Law on Public Officers; Powers, Duties, and Norms of Conduct of Public Officers; Civil Service Law
104 Political Law; The Law on Public Officers; Powers, Duties, and Norms of Conduct of Public Officers; Civil Service Law; Positions in the Career Executive Service
105 Political Law; The Law on Public Officers; Powers, Duties, and Norms of Conduct of Public Officers; Civil Service Law; Positions in the Career Executive Service; Assistant Schools Division Superintendent
106 Political Law; The Law on Public Officers; Powers, Duties, and Norms of Conduct of Public Officers; Civil Service Law; Positions in the Career Executive Service; Criteria
107 Political Law; The Law on Public Officers; Powers, Duties, and Norms of Conduct of Public Officers; Civil Service Law; Positions in the Career Executive Service; Mandamus to attest to permanence of appointment
108 Political Law; The Law on Public Officers; Rights and Privileges of Public Officers
109 Political Law; The Law on Public Officers; Termination of Official Functions
110 Political Law; The Law on Public Officers; Termination of Official Functions; Civil Service Law
111 Political Law; The Law on Public Officers; Termination of Official Functions; Civil Service Law; Dismissal
112 Political Law; The Law on Public Officers; Termination of Official Functions; Civil Service Law; Dismissal; Dishonesty
113 Political Law; The Law on Public Officers; Termination of Official Functions; Civil Service Law; Dismissal; Gross Inefficiency
114 Political Law; The Law on Public Officers; Termination of Official Functions; Civil Service Law; Dismissal; Gross Misconduct
115 Political Law; The Law on Public Officers; Termination of Official Functions; Civil Service Law; Dismissal; Illegal Dismissal
116 Political Law; The Law on Public Officers; Termination of Official Functions; Civil Service Law; Dismissal; Misconduct
117 Political Law; The Law on Public Officers; Termination of Official Functions; Security of Tenure

876
data/csvs/remedial.csv

@ -0,0 +1,876 @@
"Remedial Law"
"Remedial Law; Civil Procedure"
"Remedial Law; Civil Procedure; Purpose of Rules"
"Remedial Law; Civil Procedure; Jurisdiction"
"Remedial Law; Civil Procedure; In General"
"Remedial Law; Civil Procedure; Civil Actions"
"Remedial Law; Civil Procedure; Civil Actions; Ordinary Civil Actions;"
"Remedial Law; Civil Procedure; Civil Actions; Ordinary Civil Actions; Cause of Action"
"Remedial Law; Civil Procedure; Civil Actions; Ordinary Civil Actions; Parties to Civil Actions"
"Remedial Law; Civil Procedure; Civil Actions; Ordinary Civil Actions; Venue of Actions"
"Remedial Law; Civil Procedure; Civil Actions; Ordinary Civil Actions; Uniform Procedure in Trial Courts"
"Remedial Law; Civil Procedure; Civil Actions; Pleadings;"
"Remedial Law; Civil Procedure; Civil Actions; Pleadings; Definition"
"Remedial Law; Civil Procedure; Civil Actions; Pleadings; Pleadings Allowed"
"Remedial Law; Civil Procedure; Civil Actions; Pleadings; Pleadings Allowed; Negative Defense"
"Remedial Law; Civil Procedure; Civil Actions; Pleadings; Pleadings Allowed; Affirmative Defense"
"Remedial Law; Civil Procedure; Civil Actions; Pleadings; Parts of A Pleading"
"Remedial Law; Civil Procedure; Civil Actions; Pleadings; Making Allegations in Pleadings"
"Remedial Law; Civil Procedure; Civil Actions; Pleadings; Effect of Failure to Plead"
"Remedial Law; Civil Procedure; Civil Actions; Pleadings; Amended and Supplemental Pleadings"
"Remedial Law; Civil Procedure; Civil Actions; Pleadings; When to File Responsivie Pleadings"
"Remedial Law; Civil Procedure; Bill of Particulars"
"Remedial Law; Civil Procedure; Bill of Particulars; When Applied For; Purpose"
"Remedial Law; Civil Procedure; Bill of Particulars; Action by the Court"
"Remedial Law; Civil Procedure; Bill of Particulars; Compliance With Order"
"Remedial Law; Civil Procedure; Bill of Particulars; Effect of Non-Compliance "
"Remedial Law; Civil Procedure; Bill of Particulars; Stay of Period to File Responsive Pleading"
"Remedial Law; Civil Procedure; Bill of Particulars; Bill a Part of Pleading"
"Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers"
"Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Coverage"
"Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Filing and Service"
"Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Manner of Filing"
"Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Papers Required to be Filed and Served"
"Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Modes of Service"
"Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Modes of Service; Personal Service"
"Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Modes of Service; Service by Mail"
"Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Substituted Service"
"Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Service of Judgments, Final Orders or Resolutions"
"Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Completeness of Service"
"Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Priorities in Modes of Service and Filing"
"Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Proof of Filing"
"Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Proof of Service"
"Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Notice of Lis Pendens"
"Remedial Law; Civil Procedure; Summons"
"Remedial Law; Civil Procedure; Summons; Issuance"
"Remedial Law; Civil Procedure; Summons; Contents"
"Remedial Law; Civil Procedure; Summons; By Whom Served"
"Remedial Law; Civil Procedure; Summons; Return"
"Remedial Law; Civil Procedure; Summons; Issuance of Alias Summons"
"Remedial Law; Civil Procedure; Summons; Service in Perosn on Defendant"
"Remedial Law; Civil Procedure; Summons; Substituted Service"
"Remedial Law; Civil Procedure; Summons; Service Upon Entity Without Juridical Personality"
"Remedial Law; Civil Procedure; Summons; Service Upon Prisoners"
"Remedial Law; Civil Procedure; Summons; Service Upon Minors And Incompetents"
"Remedial Law; Civil Procedure; Summons; Service Upon Domestic Private Juridical Entity"
"Remedial Law; Civil Procedure; Summons; Service Upon Foreign Private Juridical Entity"
"Remedial Law; Civil Procedure; Summons; Service Upon Public Corporations"
"Remedial Law; Civil Procedure; Summons; Service Upon Defendant Whose Identity or Whereabouts Are Unknown"
"Remedial Law; Civil Procedure; Summons; Extraterritorial Service"
"Remedial Law; Civil Procedure; Summons; Residents Temporarily Out of The Philippines"
"Remedial Law; Civil Procedure; Summons; Leave of Court"
"Remedial Law; Civil Procedure; Summons; Proof of Service"
"Remedial Law; Civil Procedure; Summons; Proof of Service by Publication"
"Remedial Law; Civil Procedure; Summons; Voluntary Appearance"
"Remedial Law; Civil Procedure; Motions"
"Remedial Law; Civil Procedure; Definition"
"Remedial Law; Civil Procedure; Must Be in Writing"
"Remedial Law; Civil Procedure; Contents"
"Remedial Law; Civil Procedure; Hearing"
"Remedial Law; Civil Procedure; Hearing; Notice of Hearing"
"Remedial Law; Civil Procedure; Hearing; Proof of Service"
"Remedial Law; Civil Procedure; Motion Day"
"Remedial Law; Civil Procedure; Omnibus Motion"
"Remedial Law; Civil Procedure; Motion for Leave"
"Remedial Law; Civil Procedure; Form"
"Remedial Law; Civil Procedure; Motion to Dismiss"
"Remedial Law; Civil Procedure; Motion to Dismiss; Grounds"
"Remedial Law; Civil Procedure; Motion to Dismiss; Hearing"
"Remedial Law; Civil Procedure; Motion to Dismiss; Resolution of Motion"
"Remedial Law; Civil Procedure; Motion to Dismiss; Time to Plead"
"Remedial Law; Civil Procedure; Motion to Dismiss; Effect of Dismissal"
"Remedial Law; Civil Procedure; Motion to Dismiss; Pleading Grounds as Affirmative Defenses"
"Remedial Law; Civil Procedure; Dismissal of Actions"
"Remedial Law; Civil Procedure; Dismissal of Actions; Upon Notice by Plaintiff"
"Remedial Law; Civil Procedure; Dismissal of Actions; Upon Motion by Plaintiff"
"Remedial Law; Civil Procedure; Dismissal of Actions; Due to Fault of Plaintiff"
"Remedial Law; Civil Procedure; Dismissal of Actions; Dismissal of Counterclaim, Cross-claim, or Third-Party Complaint"
"Remedial Law; Civil Procedure; Pre-Trial"
"Remedial Law; Civil Procedure; When Conducted"
"Remedial Law; Civil Procedure; Nature and Purpose"
"Remedial Law; Civil Procedure; Notice of Pre-Trial"
"Remedial Law; Civil Procedure; Appearance of Parties"
"Remedial Law; Civil Procedure; Appearance of Parties; Effect of Failure to Appear"
"Remedial Law; Civil Procedure; Pre-Trial Brief"
"Remedial Law; Civil Procedure; Record of Pre-Trial"
"Remedial Law; Civil Procedure; Intervention"
"Remedial Law; Civil Procedure; Intervention; Who May Intervene"
"Remedial Law; Civil Procedure; Intervention; Time to Intervene"
"Remedial Law; Civil Procedure; Intervention; Pleadings-in-Intervention"
"Remedial Law; Civil Procedure; Intervention; Pleadings-in-Intervention; Complaint-in-Intervention"
"Remedial Law; Civil Procedure; Intervention; Pleadings-in-Intervention; Answer to the Complaint-in-Intervention"
"Remedial Law; Civil Procedure; Calendar of Cases "
"Remedial Law; Civil Procedure; Calendar of Cases; Assignment of Cases"
"Remedial Law; Civil Procedure; Subpoena"
"Remedial Law; Civil Procedure; Subpoena Duces Tecum"
"Remedial Law; Civil Procedure; Subpoena; By Whom Issued"
"Remedial Law; Civil Procedure; Subpoena; Form and Contents"
"Remedial Law; Civil Procedure; Subpoena; Quashing a Subpoena"
"Remedial Law; Civil Procedure; Subpoena; Subpoena for Depositions"
"Remedial Law; Civil Procedure; Subpoena; Service"
"Remedial Law; Civil Procedure; Subpoena; Compelling Attendance"
"Remedial Law; Civil Procedure; Subpoena; Compelling Attendance; Exceptions"
"Remedial Law; Civil Procedure; Subpoena; Contempt"
"Remedial Law; Civil Procedure; Subpoena; Contempt; Exceptions"
"Remedial Law; Civil Procedure; Computation of Time "
"Remedial Law; Civil Procedure; Computation of Time; How Computed"
"Remedial Law; Civil Procedure; Computation of Time; Effect of Interruption"
"Remedial Law; Civil Procedure; Modes of Discovery "
"Remedial Law; Civil Procedure; Modes of Discovery; Depositions Pending Action"
"Remedial Law; Civil Procedure; Modes of Discovery; Depositions Before Action or Pending Appeal"
"Remedial Law; Civil Procedure; Modes of Discovery; Interrogatories to Parties"
"Remedial Law; Civil Procedure; Modes of Discovery; Admission by Adverse Party"
"Remedial Law; Civil Procedure; Modes of Discovery; Production or Inspection of Documents or Things"
"Remedial Law; Civil Procedure; Modes of Discovery; Physical And Mental Examination of Persons"
"Remedial Law; Civil Procedure; Modes of Discovery; Refusal to Comply With Modes of Discovery"
"Remedial Law; Civil Procedure; Trial "
"Remedial Law; Civil Procedure; Trial; Notice of Trial"
"Remedial Law; Civil Procedure; Trial; Adjournments and Postponements"
"Remedial Law; Civil Procedure; Trial; Adjournments and Postponements; Motion to Postpone Trial for Absence of Evidence"
"Remedial Law; Civil Procedure; Trial; Adjournments and Postponements; Motion to Postpone Trial for Illness of Party or Counsel"
"Remedial Law; Civil Procedure; Trial; Order of Trial"
"Remedial Law; Civil Procedure; Trial; Agreed Statement of Facts"
"Remedial Law; Civil Procedure; Trial; Statement of Judge"
"Remedial Law; Civil Procedure; Trial; Suspension of Actions"
"Remedial Law; Civil Procedure; Trial; Judge To Receive Evidence; Delegation to Clerk of Court"
"Remedial Law; Civil Procedure; Consolidation or Severance"
"Remedial Law; Civil Procedure; Consolidation or Severance; Consolidation"
"Remedial Law; Civil Procedure; Consolidation or Severance; Separate Trials"
"Remedial Law; Civil Procedure; Trial by Commissioner"
"Remedial Law; Civil Procedure; Demurrer to Evidence"
"Remedial Law; Civil Procedure; Judgment on the Pleadings"
"Remedial Law; Civil Procedure; Summary Judgments"
"Remedial Law; Civil Procedure; Judgments, Final Orders and Entry Thereof"
"Remedial Law; Civil Procedure; Judgments, Final Orders and Entry Thereof; Rendition of Judgments and Final Orders"
"Remedial Law; Civil Procedure; Judgments, Final Orders and Entry Thereof; Entry of Judgments and Final Orders"
"Remedial Law; Civil Procedure; Judgments, Final Orders and Entry Thereof; Judgment For or Against One or More of Several Parties"
"Remedial Law; Civil Procedure; Judgments, Final Orders and Entry Thereof; Several Judgments"
"Remedial Law; Civil Procedure; Judgments, Final Orders and Entry Thereof; Separate Judgments"
"Remedial Law; Civil Procedure; Judgments, Final Orders and Entry Thereof; Judgment Against Entity Without Juridical Personality"
"Remedial Law; Civil Procedure; New Trial or Reconsideration"
"Remedial Law; Civil Procedure; New Trial or Reconsideration; Grounds for Filing Motion for New Trial or Reconsideration"
"Remedial Law; Civil Procedure; New Trial or Reconsideration; Period for Filing Motion for New Trial or Reconsideration"
"Remedial Law; Civil Procedure; New Trial or Reconsideration; Contents of Motion for New Trial or Reconsideration and Notice Thereof"
"Remedial Law; Civil Procedure; New Trial or Reconsideration; Action Upon Motion for New Trial or Reconsideration"
"Remedial Law; Civil Procedure; New Trial or Reconsideration; Resolution of Motion"
"Remedial Law; Civil Procedure; New Trial or Reconsideration; Second Motion for New Trial"
"Remedial Law; Civil Procedure; New Trial or Reconsideration; Effect of Granting Motion for New Trial"
"Remedial Law; Civil Procedure; New Trial or Reconsideration; Partial New Trial or Reconsideration"
"Remedial Law; Civil Procedure; New Trial or Reconsideration; Effect of Order for Partial New Trial"
"Remedial Law; Civil Procedure; New Trial or Reconsideration; Remedy Against Order Denying a Motion for New Trial or Reconsideration"
"Remedial Law; Civil Procedure; Relief from Judgments, Orders, or Other Proceedings"
"Remedial Law; Civil Procedure; Relief from Judgments, Orders, or Other Proceedings; Petition for Relief From Judgment, Order, or Other Proceedings"
"Remedial Law; Civil Procedure; Relief from Judgments, Orders, or Other Proceedings; Petition for Relief From Denial of Appeal"
"Remedial Law; Civil Procedure; Relief from Judgments, Orders, or Other Proceedings; Time for Filing Petition; Contents and Verification"
"Remedial Law; Civil Procedure; Relief from Judgments, Orders, or Other Proceedings; Order to File an Answer"
"Remedial Law; Civil Procedure; Relief from Judgments, Orders, or Other Proceedings; Preliminary Injunction Pending Proceedings"
"Remedial Law; Civil Procedure; Relief from Judgments, Orders, or Other Proceedings; Proceedings After Answer is Filed"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution Upon Judgments or Final Orders"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Discretionary Execution"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Discretionary Execution; Stay of Discretionary Execution"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Judgments Not Stayed by Appeal"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Effect of Reversal of Executed Judgment"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution by Motion or by Independent Action"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution in Case of Death of Party"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Issuance, Form and Contents of a Writ of Execution"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Money, How Enforced"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Money, How Enforced; Immediate Payment on Demand"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Money, How Enforced; Satisfaction by Levy"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Money, How Enforced; Garnishment of Debts and Credits"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Specific Act"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Specific Act; Conveyance, Delivery of Deeds, or Other Specific Acts; Vesting Title"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Specific Act; Sale of Real or Personal Property"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Specific Act; Delivery or Restitution of Real Property"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Specific Act; Removal of Improvements on Property Subject of Execution"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Specific Act; Delivery of Personal Property"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Special Judgments"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Effect of Levy on Execution as to Third Persons"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Property Exempt From Execution"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Return of Writ of Execution"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Notice of Sale of Property on Execution"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Proceedings Where Property Claimed by Third Person"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Penalty For Selling Without Notice, or Removing or Defacing Notice"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution; Order of Sale"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution; Refusal of Purchaser to Pay"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution; Judgment Obligee as Purchaser"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution; Adjournment of Sale"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution; Conveyance to Purchaser of Personal Property Capable of Manual Delivery"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution; Conveyance to Purchaser of Personal Property Not Capable of Manual Delivery"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution; Conveyance of Real Property"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution; Certificate of Sale Where Property Claimed by Third Person"
"Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution; Redemption of Property"
"Remedial Law; Civil Procedure; Appeals "
"Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts"
"Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts; Where to Appeal"
"Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts; When to Appeal"
"Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts; How to Appeal"
"Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts; Perfection of Appeal; Effect Thereof"
"Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts; Appellate Court Docket and Other Lawful Fees"
"Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts; Duty of Clerk of Court"
"Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts"
"Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts; Appeal From Orders Dismissing Case Without Trial; Lack of Jurisdiction"
"Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts; Applicability of Rule 41"
"Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts"
"Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Subject of Appeal"
"Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Modes of Appeal"
"Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Period of Ordinary Appeal"
"Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Appeal in Habeas Corpus Cases"
"Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Appellate Court Docket and Other Lawful Fees"
"Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Notice of Appeal"
"Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Record on Appeal; Form and Contents Thereof"
"Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Approval of Record on Appeal"
"Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Joint Record on Appeal"
"Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Perfection of Appeal; Effect Thereof"
"Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Duty of Clerk of Cout of the Lower Court Upon Perfection of Appeal"
"Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Transcript"
"Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Transmittal"
"Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Dismissal of Appeal"
"Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals"
"Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals; How Appeal Taken; Time for Filing"
"Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals; Form and Contents"
"Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals; Effect of Failure to Comply With Requirements"
"Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals; Action on the Petition"
"Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals; Contents of Comment"
"Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals; Due Course"
"Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals; Elevation of Record"
"Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals; Perfection of Appeal; Effect Thereof"
"Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals; Submission for Decision"
"Remedial Law; Civil Procedure; Appeals; From the Court of Tax Appeals to the Court of Appeals"
"Remedial Law; Civil Procedure; Appeals; From Quasi-Judicial Agencies to the Court of Appeals"
"Remedial Law; Civil Procedure; Appeals; From the Court of Tax Appeals to the Court of Appeals"
"Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals"
"Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Ordinary Appealed Cases"
"Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Appeal by Certiorari to the Supreme Court"
"Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Original Cases"
"Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Annulment of Judgments or Final Orders or Resolutions"
"Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Preliminary Conference"
"Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Oral Argument"
"Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Dismissal of Appeal"
"Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Judgment"
"Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Motion for Reconsideration"
"Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; New Trial"
"Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Internal Business"
"Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Publications of Judgments and Final Resolutions"
"Remedial Law; Civil Procedure; Procedure in the Supreme Court"
"Remedial Law; Civil Procedure; Procedure in the Supreme Court; Original Cases"
"Remedial Law; Civil Procedure; Procedure in the Supreme Court; Original Cases; Original Cases Cognizable"
"Remedial Law; Civil Procedure; Procedure in the Supreme Court; Original Cases; Rules Applicable"
"Remedial Law; Civil Procedure; Procedure in the Supreme Court; Appealed Cases"
"Remedial Law; Civil Procedure; Procedure in the Supreme Court; Appealed Cases; Mode of Appeal"
"Remedial Law; Civil Procedure; Procedure in the Supreme Court; Appealed Cases; Procedure"
"Remedial Law; Civil Procedure; Procedure in the Supreme Court; Appealed Cases; Grounds for Dismissal of Appeal"
"Remedial Law; Civil Procedure; Procedure in the Supreme Court; Appealed Cases; Disposition of Improper Appeal"
"Remedial Law; Civil Procedure; Procedure in the Supreme Court; Appealed Cases; Procedure if Opinion is Equally Divided"
"Remedial Law; Civil Procedure; Provisional Remedies"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Grounds Upon Which Attachment May Issue"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Issuance and Contents of Order"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Affidavit and Bond Required"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Condition of Applicant's Bond"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Manner of Attaching Property"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Sheriff's Return"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Attachment of Real and Personal Property; Recording Thereof"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Effect of Attachment of Debts, Credits and All Other Similar Property"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Effect of Attachment of Interest in Property Belonging to the Estate of a Decedent"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Examination of Party Whose Property is Attached and Persons Indebted to Him or Controlling His Property; Delivery of Property to Sheriff"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; When Attached Property May Be Sold After Levy on Attachment and Before Entry of Judgment"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Discharge of Attachment Upon Giving Counter-Bond"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Discharge of Attachment on Other Grounds"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Proceeding Where Property Claimed by Third Person"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Satisfaction of Judgment Out of Property Attached; Return of Officer"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Balance Due Collected Upon An Execution; Excess Delivered to Judgment Obligor"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Recovery Upon the Counter-Bond"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Disposition of Money Deposited"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Disposition of Attached Property Where Judgment is for Party Against Whom Attachment was Issued"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Claim for Damages on Account of Improper, Irregular or Excessive Attachment"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction; Definition; Classes"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction; Who May Grant Preliminary Injunction"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction; Grounds for Issuance of Preliminary Injuction"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction; Verified Application and Bond for Preliminary Injuction or Temporary Restraining Order"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction; Preliminary Injunction Not Granted Without Notice; Exception"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction; Grounds for Objection To, or for Motion of Dissolution of, Injunction or Restraining Order"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction; Service of Copies of Bonds; Effect of Disapproval of Same"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction; Judgment to Include Damages Against Party and Sureties"
"Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction; When Final Injunction Granted"
"Remedial Law; Civil Procedure; Provisional Remedies; Receivership"
"Remedial Law; Civil Procedure; Provisional Remedies; Receivership; Appointment of Receiver"
"Remedial Law; Civil Procedure; Provisional Remedies; Receivership; Bond on Appointment of Receiver"
"Remedial Law; Civil Procedure; Provisional Remedies; Receivership; Denial of Application or Discharge of Receiver"
"Remedial Law; Civil Procedure; Provisional Remedies; Receivership; Oath and Bond of Receiver"
"Remedial Law; Civil Procedure; Provisional Remedies; Receivership; Service of Copies of Bonds; Effect of Disapproval of Same"
"Remedial Law; Civil Procedure; Provisional Remedies; Receivership; General Powers of Receiver"
"Remedial Law; Civil Procedure; Provisional Remedies; Receivership; Liability for Refusal or Neglect to Deliver Property to Receiver"
"Remedial Law; Civil Procedure; Provisional Remedies; Receivership; Termination of Receivership; Compensation of Receiver"
"Remedial Law; Civil Procedure; Provisional Remedies; Receivership; Judgment to Include Recovery Against Sureties"
"Remedial Law; Civil Procedure; Provisional Remedies; Replevin"
"Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Application"
"Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Affidavit and Bond"
"Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Order"
"Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Duty of the Sheriff"
"Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Return of Property"
"Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Disposition of Property by Sheriff"
"Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Proceedings Where Property Claimed by Third Person"
"Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Return of Papers"
"Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Judgment"
"Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Judgment to Include Recovery Against Sureties"
"Remedial Law; Civil Procedure; Provisional Remedies; Support Pendente Lite"
"Remedial Law; Civil Procedure; Provisional Remedies; Support Pendente Lite; Application"
"Remedial Law; Civil Procedure; Provisional Remedies; Support Pendente Lite; Comment"
"Remedial Law; Civil Procedure; Provisional Remedies; Support Pendente Lite; Hearing"
"Remedial Law; Civil Procedure; Provisional Remedies; Support Pendente Lite; Order"
"Remedial Law; Civil Procedure; Provisional Remedies; Support Pendente Lite; Enforcement of Order"
"Remedial Law; Civil Procedure; Provisional Remedies; Support Pendente Lite; Support in Criminal Cases"
"Remedial Law; Civil Procedure; Provisional Remedies; Support Pendente Lite; Restitution"
"Remedial Law; Civil Procedure; Special Civil Actions"
"Remedial Law; Civil Procedure; Special Civil Actions; Interpleader"
"Remedial Law; Civil Procedure; Special Civil Actions; Interpleader; When Proper"
"Remedial Law; Civil Procedure; Special Civil Actions; Interpleader; Order"
"Remedial Law; Civil Procedure; Special Civil Actions; Interpleader; Summons"
"Remedial Law; Civil Procedure; Special Civil Actions; Interpleader; Motion to Dismiss"
"Remedial Law; Civil Procedure; Special Civil Actions; Interpleader; Answer and Other Pleadings"
"Remedial Law; Civil Procedure; Special Civil Actions; Interpleader; Determination"
"Remedial Law; Civil Procedure; Special Civil Actions; Interpleader; Docket and Other Lawful Fees, Costs and Litigation Expenses as Liens"
"Remedial Law; Civil Procedure; Special Civil Actions; Declaratory Relief and Similar Remedies"
"Remedial Law; Civil Procedure; Special Civil Actions; Declaratory Relief and Similar Remedies; Who May File Petition"
"Remedial Law; Civil Procedure; Special Civil Actions; Declaratory Relief and Similar Remedies; Parties"
"Remedial Law; Civil Procedure; Special Civil Actions; Declaratory Relief and Similar Remedies; Notice on Solicitor General"
"Remedial Law; Civil Procedure; Special Civil Actions; Declaratory Relief and Similar Remedies; Local Government Ordinances"
"Remedial Law; Civil Procedure; Special Civil Actions; Declaratory Relief and Similar Remedies; Court Action Discretionary"
"Remedial Law; Civil Procedure; Special Civil Actions; Declaratory Relief and Similar Remedies; Conversion Into Ordinary Action"
"Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections"
"Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Audit"
"Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections; Scope"
"Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections; Mode of Review"
"Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections; Time to File Petition"
"Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections; Docket and Other Lawful Fees"
"Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections; Form and Contents of Petition"
"Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections; Order to Comment"
"Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections; Comments of Respondents"
"Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections; Effect of Filing"
"Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections; Submission for Decision"
"Remedial Law; Civil Procedure; Special Civil Actions; Certiorari, Prohibition, Mandamus"
"Remedial Law; Civil Procedure; Special Civil Actions; Certiorari, Prohibition, Mandamus; Petition for Certiorari"
"Remedial Law; Civil Procedure; Special Civil Actions; Certiorari, Prohibition, Mandamus; Petition for Prohibition"
"Remedial Law; Civil Procedure; Special Civil Actions; Certiorari, Prohibition, Mandamus; Petition for Mandamus"
"Remedial Law; Civil Procedure; Special Civil Actions; Certiorari, Prohibition, Mandamus; When and Where to File the Petition"
"Remedial Law; Civil Procedure; Special Civil Actions; Certiorari, Prohibition, Mandamus; Respondents and Costs in Certain Cases"
"Remedial Law; Civil Procedure; Special Civil Actions; Certiorari, Prohibition, Mandamus; Order to Commtent"
"Remedial Law; Civil Procedure; Special Civil Actions; Certiorari, Prohibition, Mandamus; Expediting Proceedings; Injunctive Relief"
"Remedial Law; Civil Procedure; Special Civil Actions; Certiorari, Prohibition, Mandamus; Proceedings After Comment is Filed"
"Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto"
"Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; Action by Government Against Individuals"
"Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; When Solicitor General or Public Prosecutor Must Commence Action"
"Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; When Solicitor General or Public Prosecutor May Commence Action With Permission of Court"
"Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; When Hearing Had on Application for Permission to Commence Action"
"Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; When Individual May Commence Such an Action"
"Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; Parties and Contents of Petition Against Usurpation"
"Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; Venue"
"Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; Period for Pleadings and Proceedings May be Reduced; Action Given Precedence"
"Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; Judgment Where Usurpation Found"
"Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; Rights of Persons Adjudged Entitled to Public Office; Delivery of Books and Papers; Damages"
"Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; Limitations"
"Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; Judgment for Costs"
"Remedial Law; Civil Procedure; Special Civil Actions; Expropriation"
"Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Complaint"
"Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Entry of Plaintiff Upon Depositing Value With Authorized Government Depositary"
"Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Defenses and Objections"
"Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Order of Expropriation"
"Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Ascertainment of Compensation"
"Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Proceedings by Commissioners"
"Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Report by Commissioners and Judgment Thereupon"
"Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Action Upon Commissioners' Report"
"Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Uncertain Ownership; Conflicting Claims"
"Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Rights of Plaintiff After Judgment and Payment"
"Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Entry Not Delayed by Appeal; Effect of Reversal"
"Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Costs, By Whom Paid"
"Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Recording Judgment and Its Effects"
"Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Power of Guardian in Such Proceedings"
"Remedial Law; Civil Procedure; Special Civil Actions; Foreclosure of Real Estate Mortgage"
"Remedial Law; Civil Procedure; Special Civil Actions; Foreclosure of Real Estate Mortgage; Complaint in Action for Foreclosure"
"Remedial Law; Civil Procedure; Special Civil Actions; Foreclosure of Real Estate Mortgage; Judgment on Foreclosure for Payment or Sale"
"Remedial Law; Civil Procedure; Special Civil Actions; Foreclosure of Real Estate Mortgage; Sale of Mortgaged Property; Effect"
"Remedial Law; Civil Procedure; Special Civil Actions; Foreclosure of Real Estate Mortgage; Disposition of Proceeds of Sale"
"Remedial Law; Civil Procedure; Special Civil Actions; Foreclosure of Real Estate Mortgage; How Sale to Proceed in Case the Debt is Not All Due"
"Remedial Law; Civil Procedure; Special Civil Actions; Foreclosure of Real Estate Mortgage; Deficiency Judgment"
"Remedial Law; Civil Procedure; Special Civil Actions; Foreclosure of Real Estate Mortgage; Registration"
"Remedial Law; Civil Procedure; Special Civil Actions; Foreclosure of Real Estate Mortgage; Applicability of Other Provisions - Secs. 31, 32 and 34 of Rule 39"
"Remedial Law; Civil Procedure; Special Civil Actions; Partition"
"Remedial Law; Civil Procedure; Special Civil Actions; Partition; Complaint in Action For Partition of Real Estate"
"Remedial Law; Civil Procedure; Special Civil Actions; Partition; Order For Partition, and Partition by Agreement Thereunder"
"Remedial Law; Civil Procedure; Special Civil Actions; Partition; Commissioners to Make Partition When Parties Fail to Agree"
"Remedial Law; Civil Procedure; Special Civil Actions; Partition; Oath and Duties of Commissioners"
"Remedial Law; Civil Procedure; Special Civil Actions; Partition; Assignment or Sale of Real Estate by Commissioners"
"Remedial Law; Civil Procedure; Special Civil Actions; Partition; Report of Commissioners; Proceedings Not Binding Until Confirmed"
"Remedial Law; Civil Procedure; Special Civil Actions; Partition; Action of the Court Upon Commissioners' Report"
"Remedial Law; Civil Procedure; Special Civil Actions; Partition; Accounting for Rent And Profits in Action for Partition"
"Remedial Law; Civil Procedure; Special Civil Actions; Partition; Power of Guardian in Such Proceedings"
"Remedial Law; Civil Procedure; Special Civil Actions; Partition; Costs and Expenses to be Taxed and Collected"
"Remedial Law; Civil Procedure; Special Civil Actions; Partition; Judgment and Its Effect; Copy to be Recorded in Registry of Deeds"
"Remedial Law; Civil Procedure; Special Civil Actions; Partition; Neither Paramount Rights Nor Amicable Partition Affected by Rule"
"Remedial Law; Civil Procedure; Special Civil Actions; Partition; Partition of Personal Property"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer;"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Who May Institute Proceedings and When"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Lessor to Proceed Against Lessee Only After Demand"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Summary Procedure"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Pleadings Allowed"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Action on Complaint"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Answer"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Effect of Failure to Answer"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Preliminary Conference; Appearance of Parties"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Record of Preliminary Conference"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Submission of Affidavits and Position Papers"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Period for Rendition of Judgment"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Referral for Conciliation"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Prohibited Pleadings and Motions"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Affidavits"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Preliminary Injunction"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Resolving Defense of Ownership"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Judgment"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Judgment Conclusive Only on Possession; Not Conclusive in Actions Involving Title or Ownership"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Immediate Execution of Judgment; How to Stay Same"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Preliminary Mandatory Injunction in Case of Appeal"
"Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Immediate Execution on Appeal to Court of Appeals or Supreme Court"
"Remedial Law; Civil Procedure; Special Civil Actions; Contempt"
"Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Direct Contempt Punished Summarily"
"Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Remedy Therefrom"
"Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Indirect Contempt to be Punished After Charge and Hearing"
"Remedial Law; Civil Procedure; Special Civil Actions; Contempt; How Proceedings Commenced"
"Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Where Charge to be Filed"
"Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Hearing; Release on Bail"
"Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Punishment for Indirect Contempt"
"Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Imprisonment Until Order Obeyed"
"Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Proceeding When Party Released on Bail Fails to Answer"
"Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Court May Release Respondent"
"Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Review of Judgment or Final Order; Bond for Stay"
"Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Contempt Against Quasi-Judicial Entities"
"Remedial Law; Special Proceedings"
"Remedial Law; Special Proceedings; Subject Matter and Applicability of General Rules"
"Remedial Law; Special Proceedings; Subject Matter and Applicability of General Rules; Subject Matter of Special Proceedings"
"Remedial Law; Special Proceedings; Subject Matter and Applicability of General Rules; Applicability of Rules of Civil Actions"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Venue and Process"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Venue and Process; Where Estate of Deceased Persons Settled"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Venue and Process; Where Estate Settled Upon Dissolution of Marriage"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Venue and Process; Process"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Venue and Process; Presumption of Death"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Summary Settlement of Estates"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Summary Settlement of Estates; Extrajudicial Settlement by Agreement Between Heirs"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Summary Settlement of Estates; Summary Settlement of Estates of Small Value"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Summary Settlement of Estates; Bond to e Filed by Distirbutees"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Summary Settlement of Estates; Liability of Distributees and Estate"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Summary Settlement of Estates; Period for Claim of Minor or Incapacitated Persons"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Production of Will"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Production of Will; Allowance Necessary"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Production of Will; Conclusive as to Execution"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Production of Will; Custodian of Will to Deliver"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Production of Will; Executor to Present Will and Accept or Refuse Trust"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Production of Will; Custodian and Executor Subject to Fine for Neglect"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Production of Will; Person Retaining Will May be Committed"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Who May Petition for the Allowance of Will"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Contents of Petition"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Court to Appoint Time for Proving Will; Notice Thereof to be Published"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Heirs, Devisees, Legatees, and Executors to be Notified by Mail Or Personally"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Proof at Hearing; What Sufficient in Absence of Contest"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Proof of Lost or Destroyed Will; Certificate Thereupon"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Proof When Witnesses Do Not Reside in Province"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Proof When Witnesses Dead or Insane or Not Reside in the Philippines"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Grounds for Disallowing Will"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Contestant to File Grounds of Contest"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Subscribing Witnesses Produced or Accounted For Where Will Contested"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Proof Where Testator Petitions for Allowance of Holographic Will"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Certificate of Allowance Attached to Proved Will; to Be Recorded in The Office of Register of Deeds"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance of Will Proved Outside of Philippines and Administration of Estate Thereunder"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance of Will Proved Outside of Philippines and Administration of Estate Thereunder; Will Proved Outside The Philippines May Be Allowed Here"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance of Will Proved Outside of Philippines and Administration of Estate Thereunder; Notice of Hearing For Allowance"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance of Will Proved Outside of Philippines and Administration of Estate Thereunder; When Will Allowed, And Effect Thereof"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance of Will Proved Outside of Philippines and Administration of Estate Thereunder; Estate, How Administered"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Letters Testamentary and of Administration"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Letters Testamentary and of Administration; Who Are Incompetent to Serve As Executors Or Administrators"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Letters Testamentary and of Administration; Executor of Executor Not to Administer Estate"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Letters Testamentary and of Administration; Married Women May Serve"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Letters Testamentary and of Administration; Letters Testamentary Issued When Will Allowed"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Letters Testamentary and of Administration; Where Some Coexecutors Disqualified, Others May Act"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Letters Testamentary and of Administration; When And to Whom Letters of Administration Granted"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Opposing Issuance of Letters Testamentary; Petition and Contest for Letters of Administration"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Opposing Issuance of Letters Testamentary; Petition and Contest for Letters of Administration; Opposition to Issuance of Letters Testamentary; Simultaneous Petition For Administration"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Opposing Issuance of Letters Testamentary; Petition and Contest for Letters of Administration; Contents of Petition For Letters of Administration"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Opposing Issuance of Letters Testamentary; Petition and Contest for Letters of Administration; Court to Set Time For Hearing; Notice Thereof"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Opposing Issuance of Letters Testamentary; Petition and Contest for Letters of Administration; Opposition to Petition For Administration"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Opposing Issuance of Letters Testamentary; Petition and Contest for Letters of Administration; Hearing And Order For Letters to Issue"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Opposing Issuance of Letters Testamentary; Petition and Contest for Letters of Administration; When Letters of Administration Granted to Any Applicant"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Special Administrator"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Special Administrator; Appointment of Special Administrator"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Special Administrator; Powers And Duties of Special Administrator"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Special Administrator; When Powers of Special Administrator Cease; Transfer of Effects; Pending Suits"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Bonds of Executors and Administrators;"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Bonds of Executors and Administrators; Bond to Be Given Before Issuance of Letters; Amount; Conditions"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Bonds of Executors and Administrators; Bond of Executor Where Directed in Will; When Further Bond Required"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Bonds of Executors and Administrators; Bonds of Joint Executors And Administrators"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Bonds of Executors and Administrators; Bond of Special Administrator"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Revocation of Administration, Death, Resignation, and Removal of Executors and Administrators;"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Revocation of Administration, Death, Resignation, and Removal of Executors and Administrators; Administration Revoked If Will Discovered; Proceedings Thereupon"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Revocation of Administration, Death, Resignation, and Removal of Executors and Administrators; Court May Remove Or Accept Resignation of Executor Or Administrator; Proceedings Upon Death, Resignation Or Removal"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Revocation of Administration, Death, Resignation, and Removal of Executors and Administrators; Acts Before Revocation, Resignation, Or Removal to Be Valid"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Revocation of Administration, Death, Resignation, and Removal of Executors and Administrators; Powers of New Executor Or Administrator; Renewal of License to Sell Real Estate"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Inventory and Appraisal; Provision for Support of Family;"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Inventory and Appraisal; Provision for Support of Family; Inventory And Appraisal to Be Returned Within Three Months"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Inventory and Appraisal; Provision for Support of Family; Certain Articles Not to Be Inventoried"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Inventory and Appraisal; Provision for Support of Family; Allowance to Widow And Family"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; General Powers and Duties of Executors and Administrators;"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; General Powers and Duties of Executors and Administrators; Executor Or Administrator to Have Access to Partnership Books And Property; How Right Enforced"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; General Powers and Duties of Executors and Administrators; Executor Or Administrator to Keep Buildings In Repair"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; General Powers and Duties of Executors and Administrators; Executor Or Administrator to Retain Whole Estate to Pay Debts, And to Administer Estate Not Willed"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators;"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; Executor Or Administrator Chargeable With All Estate And Income"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; Not to Profit By Increase Or Lose By Decrease in Value"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; When Not Accountable For Debts Due Estate"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; Accountable For Income From Realty Used By Him"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; Accountable If He Neglects Or Delays to Raise Or Pay Money"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; When Allowed Money Paid As Costs"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; What Expenses And Fees Allowed Executor Or Administrator; Not to Charge For Services As Attorney; Compensation Provided By Will Controls Unless Renounced"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; When Executor Or Administrator to Render Account"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; Examinations On Oath With Respect to Account"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; Account to Be Settled On Notice"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; Surety On Bond May Be Party to Accounting"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Notice to Creditors to Be Issued By Court"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Time Within Which Claims Shall Be Filed"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Publication of Notice to Creditors"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Filing Copy of Printed Notice"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Claims Must Be Filed Under The Notice; If Not Filed, Barred; Exceptions"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Solidary Obligation of Decedent"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Mortgage Debt Due From Estate"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Claim of Executor Or Administrator Against An Estate"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; How to File A Claim; Contents Thereof; Notice to Executor Or Administrator"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Answer of Executor Or Administrator; Offsets"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Disposition of Admitted Claim"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Trial of Contested Claim"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Judgment Appealable"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Costs"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; Actions Which May And Which May Not Be Brought Against Executor Or Administrator"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; Executor Or Administrator May Bring Or Defend Actions Which Survive"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; Heir May Not Sue Until Share Assigned"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; Executor Or Administrator May Compound With Debtor"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; Mortgage Due Estate May Be Foreclosed"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; Proceedings When Property Concealed, Embezzled, Or Fraudulently Conveyed"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; Person Entrusted With Estate Compelled to Render Account"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; Embezzlement Before Letters Issued"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; Property Fraudulently Conveyed By Deceased May Be Recovered; When Executor Or Administrator Must Bring Action"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; When Creditor May Bring Action; Lien For Costs"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Debts Paid In Full If Estate Sufficient"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Part of Estate From Which Debt Paid When Provision Made By Will "
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Personalty First Chargeable For Debts, Then Realty"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Estate to Be Retained to Meet Contingent Claims"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; How Contingent Claim Becoming Absolute In Two Years Allowed And Paid; Action Against Distributees Later"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Court to Fix Contributive Shares Where Devisees, Legatees, Or Heirs Have Been In Possession"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Order of Payment If Estate Insolvent"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Dividends to Be Paid In Proportion to Claims"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Estate of Insolvent Nonresident, How Disposed of "
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; When And How Claim Proved Outside The Philippines Against Insolvent Resident's Estate Paid"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Order For Payment of Debts"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Orders Relating to Payment of Debts Where Appeal Is Taken"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; When Subsequent Distribution of Assets Ordered"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Creditors to Be Paid In Accordance With Terms of Order"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Time For Paying Debts And Legacies Fixed, Or Extended After Notice, Within What Periods"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Successor of Dead Executor Or Administrator May Have Time Extended on Notice Within Certain Period"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent;"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent; Order of Sale of Personalty"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent; Where Court May Authorize Sale, Mortgage, Or Other Encumbrance of Realty to Pay Debts And Legacies Through Personalty Not Exhausted"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent; Persons Interested May Prevent Such Sale, Mortgage Or Other Encumbrance By Giving Bond"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent; When Court May Authorize Sale of Estate As Beneficial to Interested Persons; Disposal of Proceeds"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent; When Court May Authorize Sale, Mortgage, Or Other Encumbrance of Estate to Pay Debts And Legacies In Other Countries"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent; When Court May Authorize Sale, Mortgage, Or Other Encumbrance of Realty Acquired On Execution Or Foreclosure"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent; Regulations For Granting Authority to Sell, Mortgage, Or Otherwise Encumer Estate"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent; When Court May Authorize Conveyance of Realty Which Deceased Contracted to Convey; Notice; Effect of Deed"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent; When Court May Authorize Conveyance of Lands Which Deceased Held In Trust"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Distribution and Partition of Estate"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Distribution and Partition of Estate; When Order For Distribution of Residue Made"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Distribution and Partition of Estate; Questions As to Advancement to Be Determined"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Distribution and Partition of Estate; By Whom Expenses of Partition Paid"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Distribution and Partition of Estate; Recording the Order of Partition of Estate"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Escheats"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Escheats; When and by Whom Petition Filed"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Escheats; Order for Hearing"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Escheats; Hearing and Judgment"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Escheats; When and by Whom Claim to Estate Filed"
"Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Escheats; Other Actions for Escheat"
"Remedial Law; Special Proceedings; General Guardians and Guardianship"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Venue"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Venue; Where to Institute Proceedings"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Venue; Meaning of Word ""Incompetent"""
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Venue; Transfer of Venue"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Appointment of Guardians"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Appointment of Guardians; Who May Petition for Appointment of Guardian for Resident"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Appointment of Guardians; Contents of Petition"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Appointment of Guardians; Court to Set Time for Hearing; Notice Thereof"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Appointment of Guardians; Opposition to Petition"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Appointment of Guardians; Hearing fnd Order for Letters to Issue"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Appointment of Guardians"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Appointment of Guardians; Parents as Guardians"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Appointment of Guardians; Service of Judgment"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Bonds of Guardians"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Bonds of Guardians; Bond to Be Given Before Issuance of Letters; Amount; Conditions"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Bonds of Guardians; When New Bond May Be Required and Old Sureties Discharged"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Bonds of Guardians; Bonds to Be Filed; Actions Thereon"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Selling and Encumbering Property of Ward"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Selling and Encumbering Property of Ward; Petition of Guardian for Leave to Sell or Encumber Estate"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Selling and Encumbering Property of Ward; Order to Show Cause Thereupon"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Selling and Encumbering Property of Ward; Hearing on Return of Order; Costs"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Selling and Encumbering Property of Ward; Contents of Order for Sale or Encumbrance and How Long Effective; Bond"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Selling and Encumbering Property of Ward; Court May Order Investment of Proceeds and Direct Management of Estate"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; General Powers and Duties of Guardians"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; General Powers and Duties of Guardians; To What Guardianship Shall Extend"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; General Powers and Duties of Guardians; Guardian to Pay Debts of Ward"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; General Powers and Duties of Guardians; Guardian to Settle Accounts, Collect Debts, and Appear in Actions For Ward"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; General Powers and Duties of Guardians; Estate to Be Managed Frugally and Proceeds Applied to Maintenance of Ward"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; General Powers and Duties of Guardians; Guardian May Be Authorized to Join in Partition Proceedings After Hearing"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; General Powers and Duties of Guardians; Proceedings When Person Suspected of Embezzling or Concealing Property of Ward"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; General Powers and Duties of Guardians; Inventories and Accounts of Guardians, and Appraisement of Estates"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; General Powers and Duties of Guardians; When Guardian's Accounts Presented for Settlement; Expenses and Compensation Allowed"
"Remedial Law; Special Proceedings; General Guardians and Guardianship; Termination of Guardianship"
"Remedial Law; Special Proceedings; Trustees"
"Remedial Law; Special Proceedings; Trustees; Where Trustee Appointed"
"Remedial Law; Special Proceedings; Trustees; Appointment and Powers of Trustee Under Will; Executor of Former Trustee Need Not Administer Trust"
"Remedial Law; Special Proceedings; Trustees; Appointment and Powers of New Trustee Under Written Instrument"
"Remedial Law; Special Proceedings; Trustees; Appointment and Powers of New Trustee Under Written Instrument"
"Remedial Law; Special Proceedings; Trustees; Trustee Must File Bond"
"Remedial Law; Special Proceedings; Trustees; Conditions Included in Bond"
"Remedial Law; Special Proceedings; Trustees; Appraisal; Compensation of Trustee"
"Remedial Law; Special Proceedings; Trustees; Removal or Resignation of Trustee"
"Remedial Law; Special Proceedings; Trustees; Proceedings for Sale or Encumbrance of Trust Estate"
"Remedial Law; Special Proceedings; Adoption and Custody of Minors"
"Remedial Law; Special Proceedings; Adoption and Custody of Minors; Venue"
"Remedial Law; Special Proceedings; Adoption and Custody of Minors; Contents of Petition"
"Remedial Law; Special Proceedings; Adoption and Custody of Minors; Consent to Adoption"
"Remedial Law; Special Proceedings; Adoption and Custody of Minors; Order for Hearing"
"Remedial Law; Special Proceedings; Adoption and Custody of Minors; Hearing and Judgment"
"Remedial Law; Special Proceedings; Adoption and Custody of Minors; Proceedings as to Child Whose Parents are Separated; Appeal"
"Remedial Law; Special Proceedings; Adoption and Custody of Minors; Proceedings as to Vagrant or Abused Child"
"Remedial Law; Special Proceedings; Adoption and Custody of Minors; Service of Judgment"
"Remedial Law; Special Proceedings; Rescission and Revocation of Adoption"
"Remedial Law; Special Proceedings; Rescission and Revocation of Adoption; Who May File Petition; Grounds"
"Remedial Law; Special Proceedings; Rescission and Revocation of Adoption; Ordering to Answer"
"Remedial Law; Special Proceedings; Rescission and Revocation of Adoption; Judgment"
"Remedial Law; Special Proceedings; Rescission and Revocation of Adoption; Service of Judgment"
"Remedial Law; Special Proceedings; Rescission and Revocation of Adoption; Time Within to File Petition"
"Remedial Law; Special Proceedings; Hospitalization of Insane Persons"
"Remedial Law; Special Proceedings; Hospitalization of Insane Persons; Venue; Petition for Commitment"
"Remedial Law; Special Proceedings; Hospitalization of Insane Persons; Order for Hearing"
"Remedial Law; Special Proceedings; Hospitalization of Insane Persons; Hearing and Judgment"
"Remedial Law; Special Proceedings; Hospitalization of Insane Persons; Discharge of Insane"
"Remedial Law; Special Proceedings; Hospitalization of Insane Persons; Assistance of Fiscal in the Proceeding"
"Remedial Law; Special Proceedings; Habeas Corpus"
"Remedial Law; Special Proceedings; Habeas Corpus; To What Habeas Corpus Extends"
"Remedial Law; Special Proceedings; Habeas Corpus; Who May Grant the Writ"
"Remedial Law; Special Proceedings; Habeas Corpus; Requisites For Application Therefor"
"Remedial Law; Special Proceedings; Habeas Corpus; When Writ Not Allowed or Discharge Authorized "
"Remedial Law; Special Proceedings; Habeas Corpus; When the Writ Must be Granted and Issued"
"Remedial Law; Special Proceedings; Habeas Corpus; To Whom Writ Directed, and What to Require"
"Remedial Law; Special Proceedings; Habeas Corpus; How Prisoner Designated and Writ Served"
"Remedial Law; Special Proceedings; Habeas Corpus; How Writ Executed and Returned"
"Remedial Law; Special Proceedings; Habeas Corpus; Contents of Return"
"Remedial Law; Special Proceedings; Habeas Corpus; Return to Be Signed and Sworn to"
"Remedial Law; Special Proceedings; Habeas Corpus; Hearing on Return; Adjournments"
"Remedial Law; Special Proceedings; Habeas Corpus; When The Return Evidence, and When Only a Plea"
"Remedial Law; Special Proceedings; Habeas Corpus; When Person Lawfully Imprisoned Recommitted, and When Let to Bail"
"Remedial Law; Special Proceedings; Habeas Corpus; When Prisoner Discharged if No Appeal"
"Remedial Law; Special Proceedings; Habeas Corpus; Penalty for Refusing to Issue Writ, or for Disobeying the Same"
"Remedial Law; Special Proceedings; Habeas Corpus; Person Discharged Not to Be Again Imprisoned"
"Remedial Law; Special Proceedings; Habeas Corpus; When Prisoner May Be Removed From One Custody to Another"
"Remedial Law; Special Proceedings; Habeas Corpus; Record of Writ, Fees and Costs"
"Remedial Law; Special Proceedings; Change of Name"
"Remedial Law; Special Proceedings; Change of Name; Venue"
"Remedial Law; Special Proceedings; Change of Name; Contents of Petition"
"Remedial Law; Special Proceedings; Change of Name; Order for Hearing"
"Remedial Law; Special Proceedings; Change of Name; Hearing"
"Remedial Law; Special Proceedings; Change of Name; Judgment"
"Remedial Law; Special Proceedings; Change of Name; Service of Judgment"
"Remedial Law; Special Proceedings; Voluntary Dissolution of Corporations;"
"Remedial Law; Special Proceedings; Voluntary Dissolution of Corporations; Where, By Whom and on What Showing Application Made"
"Remedial Law; Special Proceedings; Voluntary Dissolution of Corporations; Order Thereupon for Filing Objections"
"Remedial Law; Special Proceedings; Voluntary Dissolution of Corporations; Hearing, Dissolution, and Disposition of Assets; Receiver"
"Remedial Law; Special Proceedings; Voluntary Dissolution of Corporations; What Shall Constitute Record"
"Remedial Law; Special Proceedings; Judicial Approval of Voluntary Recognition of Minor Natural Children"
"Remedial Law; Special Proceedings; Judicial Approval of Voluntary Recognition of Minor Natural Children; Venue"
"Remedial Law; Special Proceedings; Judicial Approval of Voluntary Recognition of Minor Natural Children; Contents of Petition"
"Remedial Law; Special Proceedings; Judicial Approval of Voluntary Recognition of Minor Natural Children; Order for Hearing"
"Remedial Law; Special Proceedings; Judicial Approval of Voluntary Recognition of Minor Natural Children; Opposition"
"Remedial Law; Special Proceedings; Judicial Approval of Voluntary Recognition of Minor Natural Children; Judgment"
"Remedial Law; Special Proceedings; Judicial Approval of Voluntary Recognition of Minor Natural Children; Service of Judgment Upon Civil Registrar"
"Remedial Law; Special Proceedings; Constitution of Family Home"
"Remedial Law; Special Proceedings; Constitution of Family Home; Who May Constitute"
"Remedial Law; Special Proceedings; Constitution of Family Home; Contents of Petition"
"Remedial Law; Special Proceedings; Constitution of Family Home; Notice and Publication"
"Remedial Law; Special Proceedings; Constitution of Family Home; Objection and Date of Hearing"
"Remedial Law; Special Proceedings; Constitution of Family Home; Order"
"Remedial Law; Special Proceedings; Constitution of Family Home; Registration of Order"
"Remedial Law; Special Proceedings; Absentees"
"Remedial Law; Special Proceedings; Absentees; Appointment of Representative"
"Remedial Law; Special Proceedings; Absentees; Declaration of Absence; Who May Petition"
"Remedial Law; Special Proceedings; Absentees; Contents of Petition"
"Remedial Law; Special Proceedings; Absentees; Time of Hearing; Notice and Publication Thereof"
"Remedial Law; Special Proceedings; Absentees; Opposition"
"Remedial Law; Special Proceedings; Absentees; Proof at Hearing; Order"
"Remedial Law; Special Proceedings; Absentees; Who May be Appointed"
"Remedial Law; Special Proceedings; Absentees; Termination of Administration"
"Remedial Law; Special Proceedings; Cancellation or Correction of Entries in the Civil Registry"
"Remedial Law; Special Proceedings; Cancellation or Correction of Entries in the Civil Registry; Who May File Petition"
"Remedial Law; Special Proceedings; Cancellation or Correction of Entries in the Civil Registry; Entries Subject to Cancellation or Correction"
"Remedial Law; Special Proceedings; Cancellation or Correction of Entries in the Civil Registry; Parties"
"Remedial Law; Special Proceedings; Cancellation or Correction of Entries in the Civil Registry; Notice and Publication"
"Remedial Law; Special Proceedings; Cancellation or Correction of Entries in the Civil Registry; Opposition"
"Remedial Law; Special Proceedings; Cancellation or Correction of Entries in the Civil Registry; Expediting Proceedings"
"Remedial Law; Special Proceedings; Cancellation or Correction of Entries in the Civil Registry; Order"
"Remedial Law; Special Proceedings; Appeals in Special Proceedings"
"Remedial Law; Special Proceedings; Appeals in Special Proceedings; Orders or Judgments From Which Appeals May Be Taken"
"Remedial Law; Special Proceedings; Appeals in Special Proceedings; Advance Distribution in Special Proceedings"
"Remedial Law; Criminal Procedure"
"Remedial Law; Criminal Procedure; Jurisdiction "
"Remedial Law; Criminal Procedure; Venue "
"Remedial Law; Criminal Procedure; Prosecution of Criminal Offenses"
"Remedial Law; Criminal Procedure; Prosecution of Criminal Offenses; Institution of Criminal Actions"
"Remedial Law; Criminal Procedure; Prosecution of Criminal Offenses; Complaint"
"Remedial Law; Criminal Procedure; Prosecution of Criminal Offenses; Complaint; Defense"
"Remedial Law; Criminal Procedure; Prosecution of Criminal Offenses; Information"
"Remedial Law; Criminal Procedure; Prosecution of Criminal Offenses; Information; Definition"
"Remedial Law; Criminal Procedure; Prosecution of Criminal Offenses; Who Must Prosecute Criminal Actions"
"Remedial Law; Criminal Procedure; Prosecution of Criminal Offenses; Sufficiency of Complaint or Information"
"Remedial Law; Criminal Procedure; Prosecution of Civil Actions "
"Remedial Law; Criminal Procedure; Preliminary Investigation "
"Remedial Law; Criminal Procedure; Arrests "
"Remedial Law; Criminal Procedure; Search and Seizure "
"Remedial Law; Criminal Procedure; Bail "
"Remedial Law; Criminal Procedure; Rights of Accused "
"Remedial Law; Criminal Procedure; Arraignment and Plea "
"Remedial Law; Criminal Procedure; Motion to Quash "
"Remedial Law; Criminal Procedure; Pre-Trial"
"Remedial Law; Criminal Procedure; Trial"
"Remedial Law; Criminal Procedure; Judgment"
"Remedial Law; Criminal Procedure; New Trial and Reconsideration"
"Remedial Law; Criminal Procedure; Appeal"
"Remedial Law; Criminal Procedure; Procedure in the Municipal Trial Courts "
"Remedial Law; Criminal Procedure; Procedure in the Court of Appeals"
"Remedial Law; Evidence"
"Remedial Law; Evidence; Definition of Evidence"
"Remedial Law; Evidence; Admissibility of Evidence"
"Remedial Law; Evidence; Relevancy"
"Remedial Law; Evidence; Relevancy; Collateral Matters"
"Remedial Law; Evidence; What Need Not be Proved"
"Remedial Law; Evidence; What Need Not be Proved; Judicial Notice"
"Remedial Law; Evidence; What Need Not be Proved; Judicial Admissions"
"Remedial Law; Evidence; Rules of Admissibility"
"Remedial Law; Evidence; Rules of Admissibility; Object or Real Evidence"
"Remedial Law; Evidence; Rules of Admissibility; Documentary Evidence"
"Remedial Law; Evidence; Rules of Admissibility; Documentary Evidence; Best Evidence Rule"
"Remedial Law; Evidence; Rules of Admissibility; Documentary Evidence; Secondary Evidence"
"Remedial Law; Evidence; Rules of Admissibility; Documentary Evidence; Parol Evidence Rule"
"Remedial Law; Evidence; Rules of Admissibility; Documentary Evidence; Interpretation of Documents"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Parental and Filial Privilege"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Credibility of Witnesses"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Credibility of Witnesses: Assessment Thereof by Trial Court"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Qualification of Witnesses"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Qualification of Witnesses; Disqualification by Reason of Marriage"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Qualification of Witnesses; Disqualification by Reason of Death of Adverse Party"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Qualification of Witnesses; Disqualification by Reason of Insanity of Adverse Party"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Qualification of Witnesses; Disqualification by Reason of Privileged Communication"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Testimonial Privilege"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Admissions and Confessions"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Admissions and Confessions; Admission of a Party"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Admissions and Confessions; Admission by Third Party"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Admissions and Confessions; Admission by Co-Partner or Agent"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Admissions and Confessions; Admission by Conspirator"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Admissions and Confessions; Admission by Privies"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Admissions and Confessions; Admission by Silence"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Admissions and Confessions; Confession"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Previous Conduct as Evidence"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Previous Conduct as Evidence; Similar Acts as Evidence"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Previous Conduct as Evidence; Unaccepted Offer"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Testimonial Knowledge"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Hearsay Rule"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Dying Declaration"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Declaration Against Interest"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Act or Declaration About Pedigree"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Family Reputation or Tradition Regarding Pedigree"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Common Reputation"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Part of the Res Gestae"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Entries in the Course of Business"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Entries in Official Records"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Commercial Lists and the Like"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Learned Treatises"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Testimony or Deposition at a Former Proceeding"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Opinion Rule"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Opinion Rule; Opinion of Expert Witness"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Opinion Rule; Opinion of Ordinary Witness"
"Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Character Evidence"
"Remedial Law; Evidence; Burden of Proof and Presumptions"
"Remedial Law; Evidence; Burden of Proof and Presumptions; Burden of Proof"
"Remedial Law; Evidence; Burden of Proof and Presumptions; Conclusive Presumptions"
"Remedial Law; Evidence; Burden of Proof and Presumptions; Disputable Presumptions"
"Remedial Law; Evidence; Burden of Proof and Presumptions; No Presumption of Legitimacy or Illegitimacy"
"Remedial Law; Evidence; Presentation of Evidence"
"Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses"
"Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Examination to Be Done in Open Court"
"Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Proceedings to Be Recorded"
"Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Rights and Obligations of Witnesses"
"Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Order in Examination of Individual Witness"
"Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Order in Examination of Individual Witness; Direct Examination "
"Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Order in Examination of Individual Witness; Cross Examination"
"Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Order in Examination of Individual Witness; Redirect Examination"
"Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Order in Examination of Individual Witness; Recross Examination"
"Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Recalling Witness"
"Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Leading and Misleading Questions"
"Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Impeachment of Adverse Party's Witness"
"Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Party May Not Impeach His Own Witness"
"Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Evidence of Good Character"
"Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Exclusion and Separation of Witnesses"
"Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; When Witness May Refer to Memorandum"
"Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; When Part of Transaction, Writing or Record is Given in Evidence, the Remainder is Admissible"
"Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Right to Inspect Writing Shown to Witness"
"Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents"
"Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Classes of Documents"
"Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Classes of Documents; Public Document"
"Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Classes of Documents; Private Document"
"Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; How Genuineness of Handwriting is Proved"
"Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Public Documents as Evidence"
"Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Proof of Official Record"
"Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; What Attestation of Copy Must State"
"Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Irremovability of Public Record"
"Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Public Record of a Public Document"
"Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Proof of Lack of Record"
"Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; How Judicial Record Impeached"
"Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Proof of Notarial Documents"
"Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Alterations in Document"
"Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Seal"
"Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Documentary Evidence in an Unofficial Language"
"Remedial Law; Evidence; Presentation of Evidence; Offer and Objection"
"Remedial Law; Evidence; Presentation of Evidence; Offer and Objection; Offer of Evidence"
"Remedial Law; Evidence; Presentation of Evidence; Offer and Objection; Offer of Evidence; When to Make Offer"
"Remedial Law; Evidence; Presentation of Evidence; Offer and Objection; Objection"
"Remedial Law; Evidence; Presentation of Evidence; Offer and Objection; Ruling"
"Remedial Law; Evidence; Presentation of Evidence; Offer and Objection; Striking Out Answer"
"Remedial Law; Evidence; Presentation of Evidence; Offer and Objection; Tender of Excluded Evidence"
"Remedial Law; Evidence; Weight and Sufficiency of Evidence"
"Remedial Law; Evidence; Weight and Sufficiency of Evidence; Preponderance of Evidence"
"Remedial Law; Evidence; Weight and Sufficiency of Evidence; Preponderance of Evidence; Evidence Adduced by One Side Is, as a Whole, Superior to or Has Greater Weight Than That of the Other"
"Remedial Law; Evidence; Weight and Sufficiency of Evidence; Preponderance of Evidence; Factors to Consider in Determining Whether or Not There is Preponderance of Evidence"
"Remedial Law; Evidence; Weight and Sufficiency of Evidence; Proof Beyond Reasonable Doubt"
"Remedial Law; Evidence; Weight and Sufficiency of Evidence; Extrajudicial Confession"
"Remedial Law; Evidence; Weight and Sufficiency of Evidence; Circumstantial Evidence"
"Remedial Law; Evidence; Weight and Sufficiency of Evidence; Substantial Evidence"
"Remedial Law; Evidence; Weight and Sufficiency of Evidence; Power of Court to Stop Further Evidence"
"Remedial Law; Evidence; Weight and Sufficiency of Evidence; Evidence on Motion"
"Remedial Law; Evidence; Perpetuation of Testimony"
"Remedial Law; Evidence; Perpetuation of Testimony; Petition to Perpetuate Testimony"
"Remedial Law; Evidence; Perpetuation of Testimony; Petition to Perpetuate Testimony; Contents of Petition"
"Remedial Law; Evidence; Perpetuation of Testimony; Petition to Perpetuate Testimony; Notice and Service"
"Remedial Law; Evidence; Perpetuation of Testimony; Petition to Perpetuate Testimony; Order of Examination"
"Remedial Law; Evidence; Perpetuation of Testimony; Petition to Perpetuate Testimony; Reference to Court"
"Remedial Law; Evidence; Perpetuation of Testimony; Petition to Perpetuate Testimony; Use of Depositions"
"Remedial Law; Evidence; Perpetuation of Testimony; Petition to Perpetuate Testimony; Depositions Pending Appeal"
1 Remedial Law
2 Remedial Law; Civil Procedure
3 Remedial Law; Civil Procedure; Purpose of Rules
4 Remedial Law; Civil Procedure; Jurisdiction
5 Remedial Law; Civil Procedure; In General
6 Remedial Law; Civil Procedure; Civil Actions
7 Remedial Law; Civil Procedure; Civil Actions; Ordinary Civil Actions;
8 Remedial Law; Civil Procedure; Civil Actions; Ordinary Civil Actions; Cause of Action
9 Remedial Law; Civil Procedure; Civil Actions; Ordinary Civil Actions; Parties to Civil Actions
10 Remedial Law; Civil Procedure; Civil Actions; Ordinary Civil Actions; Venue of Actions
11 Remedial Law; Civil Procedure; Civil Actions; Ordinary Civil Actions; Uniform Procedure in Trial Courts
12 Remedial Law; Civil Procedure; Civil Actions; Pleadings;
13 Remedial Law; Civil Procedure; Civil Actions; Pleadings; Definition
14 Remedial Law; Civil Procedure; Civil Actions; Pleadings; Pleadings Allowed
15 Remedial Law; Civil Procedure; Civil Actions; Pleadings; Pleadings Allowed; Negative Defense
16 Remedial Law; Civil Procedure; Civil Actions; Pleadings; Pleadings Allowed; Affirmative Defense
17 Remedial Law; Civil Procedure; Civil Actions; Pleadings; Parts of A Pleading
18 Remedial Law; Civil Procedure; Civil Actions; Pleadings; Making Allegations in Pleadings
19 Remedial Law; Civil Procedure; Civil Actions; Pleadings; Effect of Failure to Plead
20 Remedial Law; Civil Procedure; Civil Actions; Pleadings; Amended and Supplemental Pleadings
21 Remedial Law; Civil Procedure; Civil Actions; Pleadings; When to File Responsivie Pleadings
22 Remedial Law; Civil Procedure; Bill of Particulars
23 Remedial Law; Civil Procedure; Bill of Particulars; When Applied For; Purpose
24 Remedial Law; Civil Procedure; Bill of Particulars; Action by the Court
25 Remedial Law; Civil Procedure; Bill of Particulars; Compliance With Order
26 Remedial Law; Civil Procedure; Bill of Particulars; Effect of Non-Compliance
27 Remedial Law; Civil Procedure; Bill of Particulars; Stay of Period to File Responsive Pleading
28 Remedial Law; Civil Procedure; Bill of Particulars; Bill a Part of Pleading
29 Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers
30 Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Coverage
31 Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Filing and Service
32 Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Manner of Filing
33 Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Papers Required to be Filed and Served
34 Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Modes of Service
35 Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Modes of Service; Personal Service
36 Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Modes of Service; Service by Mail
37 Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Substituted Service
38 Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Service of Judgments, Final Orders or Resolutions
39 Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Completeness of Service
40 Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Priorities in Modes of Service and Filing
41 Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Proof of Filing
42 Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Proof of Service
43 Remedial Law; Civil Procedure; Filing and Service of Pleadings, Judgments and Other Papers; Notice of Lis Pendens
44 Remedial Law; Civil Procedure; Summons
45 Remedial Law; Civil Procedure; Summons; Issuance
46 Remedial Law; Civil Procedure; Summons; Contents
47 Remedial Law; Civil Procedure; Summons; By Whom Served
48 Remedial Law; Civil Procedure; Summons; Return
49 Remedial Law; Civil Procedure; Summons; Issuance of Alias Summons
50 Remedial Law; Civil Procedure; Summons; Service in Perosn on Defendant
51 Remedial Law; Civil Procedure; Summons; Substituted Service
52 Remedial Law; Civil Procedure; Summons; Service Upon Entity Without Juridical Personality
53 Remedial Law; Civil Procedure; Summons; Service Upon Prisoners
54 Remedial Law; Civil Procedure; Summons; Service Upon Minors And Incompetents
55 Remedial Law; Civil Procedure; Summons; Service Upon Domestic Private Juridical Entity
56 Remedial Law; Civil Procedure; Summons; Service Upon Foreign Private Juridical Entity
57 Remedial Law; Civil Procedure; Summons; Service Upon Public Corporations
58 Remedial Law; Civil Procedure; Summons; Service Upon Defendant Whose Identity or Whereabouts Are Unknown
59 Remedial Law; Civil Procedure; Summons; Extraterritorial Service
60 Remedial Law; Civil Procedure; Summons; Residents Temporarily Out of The Philippines
61 Remedial Law; Civil Procedure; Summons; Leave of Court
62 Remedial Law; Civil Procedure; Summons; Proof of Service
63 Remedial Law; Civil Procedure; Summons; Proof of Service by Publication
64 Remedial Law; Civil Procedure; Summons; Voluntary Appearance
65 Remedial Law; Civil Procedure; Motions
66 Remedial Law; Civil Procedure; Definition
67 Remedial Law; Civil Procedure; Must Be in Writing
68 Remedial Law; Civil Procedure; Contents
69 Remedial Law; Civil Procedure; Hearing
70 Remedial Law; Civil Procedure; Hearing; Notice of Hearing
71 Remedial Law; Civil Procedure; Hearing; Proof of Service
72 Remedial Law; Civil Procedure; Motion Day
73 Remedial Law; Civil Procedure; Omnibus Motion
74 Remedial Law; Civil Procedure; Motion for Leave
75 Remedial Law; Civil Procedure; Form
76 Remedial Law; Civil Procedure; Motion to Dismiss
77 Remedial Law; Civil Procedure; Motion to Dismiss; Grounds
78 Remedial Law; Civil Procedure; Motion to Dismiss; Hearing
79 Remedial Law; Civil Procedure; Motion to Dismiss; Resolution of Motion
80 Remedial Law; Civil Procedure; Motion to Dismiss; Time to Plead
81 Remedial Law; Civil Procedure; Motion to Dismiss; Effect of Dismissal
82 Remedial Law; Civil Procedure; Motion to Dismiss; Pleading Grounds as Affirmative Defenses
83 Remedial Law; Civil Procedure; Dismissal of Actions
84 Remedial Law; Civil Procedure; Dismissal of Actions; Upon Notice by Plaintiff
85 Remedial Law; Civil Procedure; Dismissal of Actions; Upon Motion by Plaintiff
86 Remedial Law; Civil Procedure; Dismissal of Actions; Due to Fault of Plaintiff
87 Remedial Law; Civil Procedure; Dismissal of Actions; Dismissal of Counterclaim, Cross-claim, or Third-Party Complaint
88 Remedial Law; Civil Procedure; Pre-Trial
89 Remedial Law; Civil Procedure; When Conducted
90 Remedial Law; Civil Procedure; Nature and Purpose
91 Remedial Law; Civil Procedure; Notice of Pre-Trial
92 Remedial Law; Civil Procedure; Appearance of Parties
93 Remedial Law; Civil Procedure; Appearance of Parties; Effect of Failure to Appear
94 Remedial Law; Civil Procedure; Pre-Trial Brief
95 Remedial Law; Civil Procedure; Record of Pre-Trial
96 Remedial Law; Civil Procedure; Intervention
97 Remedial Law; Civil Procedure; Intervention; Who May Intervene
98 Remedial Law; Civil Procedure; Intervention; Time to Intervene
99 Remedial Law; Civil Procedure; Intervention; Pleadings-in-Intervention
100 Remedial Law; Civil Procedure; Intervention; Pleadings-in-Intervention; Complaint-in-Intervention
101 Remedial Law; Civil Procedure; Intervention; Pleadings-in-Intervention; Answer to the Complaint-in-Intervention
102 Remedial Law; Civil Procedure; Calendar of Cases
103 Remedial Law; Civil Procedure; Calendar of Cases; Assignment of Cases
104 Remedial Law; Civil Procedure; Subpoena
105 Remedial Law; Civil Procedure; Subpoena Duces Tecum
106 Remedial Law; Civil Procedure; Subpoena; By Whom Issued
107 Remedial Law; Civil Procedure; Subpoena; Form and Contents
108 Remedial Law; Civil Procedure; Subpoena; Quashing a Subpoena
109 Remedial Law; Civil Procedure; Subpoena; Subpoena for Depositions
110 Remedial Law; Civil Procedure; Subpoena; Service
111 Remedial Law; Civil Procedure; Subpoena; Compelling Attendance
112 Remedial Law; Civil Procedure; Subpoena; Compelling Attendance; Exceptions
113 Remedial Law; Civil Procedure; Subpoena; Contempt
114 Remedial Law; Civil Procedure; Subpoena; Contempt; Exceptions
115 Remedial Law; Civil Procedure; Computation of Time
116 Remedial Law; Civil Procedure; Computation of Time; How Computed
117 Remedial Law; Civil Procedure; Computation of Time; Effect of Interruption
118 Remedial Law; Civil Procedure; Modes of Discovery
119 Remedial Law; Civil Procedure; Modes of Discovery; Depositions Pending Action
120 Remedial Law; Civil Procedure; Modes of Discovery; Depositions Before Action or Pending Appeal
121 Remedial Law; Civil Procedure; Modes of Discovery; Interrogatories to Parties
122 Remedial Law; Civil Procedure; Modes of Discovery; Admission by Adverse Party
123 Remedial Law; Civil Procedure; Modes of Discovery; Production or Inspection of Documents or Things
124 Remedial Law; Civil Procedure; Modes of Discovery; Physical And Mental Examination of Persons
125 Remedial Law; Civil Procedure; Modes of Discovery; Refusal to Comply With Modes of Discovery
126 Remedial Law; Civil Procedure; Trial
127 Remedial Law; Civil Procedure; Trial; Notice of Trial
128 Remedial Law; Civil Procedure; Trial; Adjournments and Postponements
129 Remedial Law; Civil Procedure; Trial; Adjournments and Postponements; Motion to Postpone Trial for Absence of Evidence
130 Remedial Law; Civil Procedure; Trial; Adjournments and Postponements; Motion to Postpone Trial for Illness of Party or Counsel
131 Remedial Law; Civil Procedure; Trial; Order of Trial
132 Remedial Law; Civil Procedure; Trial; Agreed Statement of Facts
133 Remedial Law; Civil Procedure; Trial; Statement of Judge
134 Remedial Law; Civil Procedure; Trial; Suspension of Actions
135 Remedial Law; Civil Procedure; Trial; Judge To Receive Evidence; Delegation to Clerk of Court
136 Remedial Law; Civil Procedure; Consolidation or Severance
137 Remedial Law; Civil Procedure; Consolidation or Severance; Consolidation
138 Remedial Law; Civil Procedure; Consolidation or Severance; Separate Trials
139 Remedial Law; Civil Procedure; Trial by Commissioner
140 Remedial Law; Civil Procedure; Demurrer to Evidence
141 Remedial Law; Civil Procedure; Judgment on the Pleadings
142 Remedial Law; Civil Procedure; Summary Judgments
143 Remedial Law; Civil Procedure; Judgments, Final Orders and Entry Thereof
144 Remedial Law; Civil Procedure; Judgments, Final Orders and Entry Thereof; Rendition of Judgments and Final Orders
145 Remedial Law; Civil Procedure; Judgments, Final Orders and Entry Thereof; Entry of Judgments and Final Orders
146 Remedial Law; Civil Procedure; Judgments, Final Orders and Entry Thereof; Judgment For or Against One or More of Several Parties
147 Remedial Law; Civil Procedure; Judgments, Final Orders and Entry Thereof; Several Judgments
148 Remedial Law; Civil Procedure; Judgments, Final Orders and Entry Thereof; Separate Judgments
149 Remedial Law; Civil Procedure; Judgments, Final Orders and Entry Thereof; Judgment Against Entity Without Juridical Personality
150 Remedial Law; Civil Procedure; New Trial or Reconsideration
151 Remedial Law; Civil Procedure; New Trial or Reconsideration; Grounds for Filing Motion for New Trial or Reconsideration
152 Remedial Law; Civil Procedure; New Trial or Reconsideration; Period for Filing Motion for New Trial or Reconsideration
153 Remedial Law; Civil Procedure; New Trial or Reconsideration; Contents of Motion for New Trial or Reconsideration and Notice Thereof
154 Remedial Law; Civil Procedure; New Trial or Reconsideration; Action Upon Motion for New Trial or Reconsideration
155 Remedial Law; Civil Procedure; New Trial or Reconsideration; Resolution of Motion
156 Remedial Law; Civil Procedure; New Trial or Reconsideration; Second Motion for New Trial
157 Remedial Law; Civil Procedure; New Trial or Reconsideration; Effect of Granting Motion for New Trial
158 Remedial Law; Civil Procedure; New Trial or Reconsideration; Partial New Trial or Reconsideration
159 Remedial Law; Civil Procedure; New Trial or Reconsideration; Effect of Order for Partial New Trial
160 Remedial Law; Civil Procedure; New Trial or Reconsideration; Remedy Against Order Denying a Motion for New Trial or Reconsideration
161 Remedial Law; Civil Procedure; Relief from Judgments, Orders, or Other Proceedings
162 Remedial Law; Civil Procedure; Relief from Judgments, Orders, or Other Proceedings; Petition for Relief From Judgment, Order, or Other Proceedings
163 Remedial Law; Civil Procedure; Relief from Judgments, Orders, or Other Proceedings; Petition for Relief From Denial of Appeal
164 Remedial Law; Civil Procedure; Relief from Judgments, Orders, or Other Proceedings; Time for Filing Petition; Contents and Verification
165 Remedial Law; Civil Procedure; Relief from Judgments, Orders, or Other Proceedings; Order to File an Answer
166 Remedial Law; Civil Procedure; Relief from Judgments, Orders, or Other Proceedings; Preliminary Injunction Pending Proceedings
167 Remedial Law; Civil Procedure; Relief from Judgments, Orders, or Other Proceedings; Proceedings After Answer is Filed
168 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments
169 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution Upon Judgments or Final Orders
170 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Discretionary Execution
171 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Discretionary Execution; Stay of Discretionary Execution
172 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Judgments Not Stayed by Appeal
173 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Effect of Reversal of Executed Judgment
174 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution by Motion or by Independent Action
175 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution in Case of Death of Party
176 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Issuance, Form and Contents of a Writ of Execution
177 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Money, How Enforced
178 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Money, How Enforced; Immediate Payment on Demand
179 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Money, How Enforced; Satisfaction by Levy
180 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Money, How Enforced; Garnishment of Debts and Credits
181 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Specific Act
182 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Specific Act; Conveyance, Delivery of Deeds, or Other Specific Acts; Vesting Title
183 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Specific Act; Sale of Real or Personal Property
184 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Specific Act; Delivery or Restitution of Real Property
185 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Specific Act; Removal of Improvements on Property Subject of Execution
186 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Judgments for Specific Act; Delivery of Personal Property
187 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Execution of Special Judgments
188 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Effect of Levy on Execution as to Third Persons
189 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Property Exempt From Execution
190 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Return of Writ of Execution
191 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Notice of Sale of Property on Execution
192 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Proceedings Where Property Claimed by Third Person
193 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Penalty For Selling Without Notice, or Removing or Defacing Notice
194 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution
195 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution; Order of Sale
196 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution; Refusal of Purchaser to Pay
197 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution; Judgment Obligee as Purchaser
198 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution; Adjournment of Sale
199 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution; Conveyance to Purchaser of Personal Property Capable of Manual Delivery
200 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution; Conveyance to Purchaser of Personal Property Not Capable of Manual Delivery
201 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution; Conveyance of Real Property
202 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution; Certificate of Sale Where Property Claimed by Third Person
203 Remedial Law; Civil Procedure; Execution, Satisfaction and Effect of Judgments; Sale of Property on Execution; Redemption of Property
204 Remedial Law; Civil Procedure; Appeals
205 Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts
206 Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts; Where to Appeal
207 Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts; When to Appeal
208 Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts; How to Appeal
209 Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts; Perfection of Appeal; Effect Thereof
210 Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts; Appellate Court Docket and Other Lawful Fees
211 Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts; Duty of Clerk of Court
212 Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts
213 Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts; Appeal From Orders Dismissing Case Without Trial; Lack of Jurisdiction
214 Remedial Law; Civil Procedure; Appeals; From Municipal Trial Courts to the Regional Trial Courts; Applicability of Rule 41
215 Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts
216 Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Subject of Appeal
217 Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Modes of Appeal
218 Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Period of Ordinary Appeal
219 Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Appeal in Habeas Corpus Cases
220 Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Appellate Court Docket and Other Lawful Fees
221 Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Notice of Appeal
222 Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Record on Appeal; Form and Contents Thereof
223 Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Approval of Record on Appeal
224 Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Joint Record on Appeal
225 Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Perfection of Appeal; Effect Thereof
226 Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Duty of Clerk of Cout of the Lower Court Upon Perfection of Appeal
227 Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Transcript
228 Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Transmittal
229 Remedial Law; Civil Procedure; Appeals; From Regional Trial Courts; Dismissal of Appeal
230 Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals
231 Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals; How Appeal Taken; Time for Filing
232 Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals; Form and Contents
233 Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals; Effect of Failure to Comply With Requirements
234 Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals; Action on the Petition
235 Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals; Contents of Comment
236 Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals; Due Course
237 Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals; Elevation of Record
238 Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals; Perfection of Appeal; Effect Thereof
239 Remedial Law; Civil Procedure; Appeals; Petition for Review from the Regional Trial Courts to the Court of Appeals; Submission for Decision
240 Remedial Law; Civil Procedure; Appeals; From the Court of Tax Appeals to the Court of Appeals
241 Remedial Law; Civil Procedure; Appeals; From Quasi-Judicial Agencies to the Court of Appeals
242 Remedial Law; Civil Procedure; Appeals; From the Court of Tax Appeals to the Court of Appeals
243 Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals
244 Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Ordinary Appealed Cases
245 Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Appeal by Certiorari to the Supreme Court
246 Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Original Cases
247 Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Annulment of Judgments or Final Orders or Resolutions
248 Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Preliminary Conference
249 Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Oral Argument
250 Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Dismissal of Appeal
251 Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Judgment
252 Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Motion for Reconsideration
253 Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; New Trial
254 Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Internal Business
255 Remedial Law; Civil Procedure; Appeals; Procedure in the Court of Appeals; Publications of Judgments and Final Resolutions
256 Remedial Law; Civil Procedure; Procedure in the Supreme Court
257 Remedial Law; Civil Procedure; Procedure in the Supreme Court; Original Cases
258 Remedial Law; Civil Procedure; Procedure in the Supreme Court; Original Cases; Original Cases Cognizable
259 Remedial Law; Civil Procedure; Procedure in the Supreme Court; Original Cases; Rules Applicable
260 Remedial Law; Civil Procedure; Procedure in the Supreme Court; Appealed Cases
261 Remedial Law; Civil Procedure; Procedure in the Supreme Court; Appealed Cases; Mode of Appeal
262 Remedial Law; Civil Procedure; Procedure in the Supreme Court; Appealed Cases; Procedure
263 Remedial Law; Civil Procedure; Procedure in the Supreme Court; Appealed Cases; Grounds for Dismissal of Appeal
264 Remedial Law; Civil Procedure; Procedure in the Supreme Court; Appealed Cases; Disposition of Improper Appeal
265 Remedial Law; Civil Procedure; Procedure in the Supreme Court; Appealed Cases; Procedure if Opinion is Equally Divided
266 Remedial Law; Civil Procedure; Provisional Remedies
267 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment
268 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Grounds Upon Which Attachment May Issue
269 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Issuance and Contents of Order
270 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Affidavit and Bond Required
271 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Condition of Applicant's Bond
272 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Manner of Attaching Property
273 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Sheriff's Return
274 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Attachment of Real and Personal Property; Recording Thereof
275 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Effect of Attachment of Debts, Credits and All Other Similar Property
276 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Effect of Attachment of Interest in Property Belonging to the Estate of a Decedent
277 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Examination of Party Whose Property is Attached and Persons Indebted to Him or Controlling His Property; Delivery of Property to Sheriff
278 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; When Attached Property May Be Sold After Levy on Attachment and Before Entry of Judgment
279 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Discharge of Attachment Upon Giving Counter-Bond
280 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Discharge of Attachment on Other Grounds
281 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Proceeding Where Property Claimed by Third Person
282 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Satisfaction of Judgment Out of Property Attached; Return of Officer
283 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Balance Due Collected Upon An Execution; Excess Delivered to Judgment Obligor
284 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Recovery Upon the Counter-Bond
285 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Disposition of Money Deposited
286 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Disposition of Attached Property Where Judgment is for Party Against Whom Attachment was Issued
287 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Attachment; Claim for Damages on Account of Improper, Irregular or Excessive Attachment
288 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction
289 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction; Definition; Classes
290 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction; Who May Grant Preliminary Injunction
291 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction; Grounds for Issuance of Preliminary Injuction
292 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction; Verified Application and Bond for Preliminary Injuction or Temporary Restraining Order
293 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction; Preliminary Injunction Not Granted Without Notice; Exception
294 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction; Grounds for Objection To, or for Motion of Dissolution of, Injunction or Restraining Order
295 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction; Service of Copies of Bonds; Effect of Disapproval of Same
296 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction; Judgment to Include Damages Against Party and Sureties
297 Remedial Law; Civil Procedure; Provisional Remedies; Preliminary Injunction; When Final Injunction Granted
298 Remedial Law; Civil Procedure; Provisional Remedies; Receivership
299 Remedial Law; Civil Procedure; Provisional Remedies; Receivership; Appointment of Receiver
300 Remedial Law; Civil Procedure; Provisional Remedies; Receivership; Bond on Appointment of Receiver
301 Remedial Law; Civil Procedure; Provisional Remedies; Receivership; Denial of Application or Discharge of Receiver
302 Remedial Law; Civil Procedure; Provisional Remedies; Receivership; Oath and Bond of Receiver
303 Remedial Law; Civil Procedure; Provisional Remedies; Receivership; Service of Copies of Bonds; Effect of Disapproval of Same
304 Remedial Law; Civil Procedure; Provisional Remedies; Receivership; General Powers of Receiver
305 Remedial Law; Civil Procedure; Provisional Remedies; Receivership; Liability for Refusal or Neglect to Deliver Property to Receiver
306 Remedial Law; Civil Procedure; Provisional Remedies; Receivership; Termination of Receivership; Compensation of Receiver
307 Remedial Law; Civil Procedure; Provisional Remedies; Receivership; Judgment to Include Recovery Against Sureties
308 Remedial Law; Civil Procedure; Provisional Remedies; Replevin
309 Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Application
310 Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Affidavit and Bond
311 Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Order
312 Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Duty of the Sheriff
313 Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Return of Property
314 Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Disposition of Property by Sheriff
315 Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Proceedings Where Property Claimed by Third Person
316 Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Return of Papers
317 Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Judgment
318 Remedial Law; Civil Procedure; Provisional Remedies; Replevin; Judgment to Include Recovery Against Sureties
319 Remedial Law; Civil Procedure; Provisional Remedies; Support Pendente Lite
320 Remedial Law; Civil Procedure; Provisional Remedies; Support Pendente Lite; Application
321 Remedial Law; Civil Procedure; Provisional Remedies; Support Pendente Lite; Comment
322 Remedial Law; Civil Procedure; Provisional Remedies; Support Pendente Lite; Hearing
323 Remedial Law; Civil Procedure; Provisional Remedies; Support Pendente Lite; Order
324 Remedial Law; Civil Procedure; Provisional Remedies; Support Pendente Lite; Enforcement of Order
325 Remedial Law; Civil Procedure; Provisional Remedies; Support Pendente Lite; Support in Criminal Cases
326 Remedial Law; Civil Procedure; Provisional Remedies; Support Pendente Lite; Restitution
327 Remedial Law; Civil Procedure; Special Civil Actions
328 Remedial Law; Civil Procedure; Special Civil Actions; Interpleader
329 Remedial Law; Civil Procedure; Special Civil Actions; Interpleader; When Proper
330 Remedial Law; Civil Procedure; Special Civil Actions; Interpleader; Order
331 Remedial Law; Civil Procedure; Special Civil Actions; Interpleader; Summons
332 Remedial Law; Civil Procedure; Special Civil Actions; Interpleader; Motion to Dismiss
333 Remedial Law; Civil Procedure; Special Civil Actions; Interpleader; Answer and Other Pleadings
334 Remedial Law; Civil Procedure; Special Civil Actions; Interpleader; Determination
335 Remedial Law; Civil Procedure; Special Civil Actions; Interpleader; Docket and Other Lawful Fees, Costs and Litigation Expenses as Liens
336 Remedial Law; Civil Procedure; Special Civil Actions; Declaratory Relief and Similar Remedies
337 Remedial Law; Civil Procedure; Special Civil Actions; Declaratory Relief and Similar Remedies; Who May File Petition
338 Remedial Law; Civil Procedure; Special Civil Actions; Declaratory Relief and Similar Remedies; Parties
339 Remedial Law; Civil Procedure; Special Civil Actions; Declaratory Relief and Similar Remedies; Notice on Solicitor General
340 Remedial Law; Civil Procedure; Special Civil Actions; Declaratory Relief and Similar Remedies; Local Government Ordinances
341 Remedial Law; Civil Procedure; Special Civil Actions; Declaratory Relief and Similar Remedies; Court Action Discretionary
342 Remedial Law; Civil Procedure; Special Civil Actions; Declaratory Relief and Similar Remedies; Conversion Into Ordinary Action
343 Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections
344 Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Audit
345 Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections; Scope
346 Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections; Mode of Review
347 Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections; Time to File Petition
348 Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections; Docket and Other Lawful Fees
349 Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections; Form and Contents of Petition
350 Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections; Order to Comment
351 Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections; Comments of Respondents
352 Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections; Effect of Filing
353 Remedial Law; Civil Procedure; Special Civil Actions; Review of Judgments and Final Orders or Resolutions of the Commission on Elections; Submission for Decision
354 Remedial Law; Civil Procedure; Special Civil Actions; Certiorari, Prohibition, Mandamus
355 Remedial Law; Civil Procedure; Special Civil Actions; Certiorari, Prohibition, Mandamus; Petition for Certiorari
356 Remedial Law; Civil Procedure; Special Civil Actions; Certiorari, Prohibition, Mandamus; Petition for Prohibition
357 Remedial Law; Civil Procedure; Special Civil Actions; Certiorari, Prohibition, Mandamus; Petition for Mandamus
358 Remedial Law; Civil Procedure; Special Civil Actions; Certiorari, Prohibition, Mandamus; When and Where to File the Petition
359 Remedial Law; Civil Procedure; Special Civil Actions; Certiorari, Prohibition, Mandamus; Respondents and Costs in Certain Cases
360 Remedial Law; Civil Procedure; Special Civil Actions; Certiorari, Prohibition, Mandamus; Order to Commtent
361 Remedial Law; Civil Procedure; Special Civil Actions; Certiorari, Prohibition, Mandamus; Expediting Proceedings; Injunctive Relief
362 Remedial Law; Civil Procedure; Special Civil Actions; Certiorari, Prohibition, Mandamus; Proceedings After Comment is Filed
363 Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto
364 Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; Action by Government Against Individuals
365 Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; When Solicitor General or Public Prosecutor Must Commence Action
366 Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; When Solicitor General or Public Prosecutor May Commence Action With Permission of Court
367 Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; When Hearing Had on Application for Permission to Commence Action
368 Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; When Individual May Commence Such an Action
369 Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; Parties and Contents of Petition Against Usurpation
370 Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; Venue
371 Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; Period for Pleadings and Proceedings May be Reduced; Action Given Precedence
372 Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; Judgment Where Usurpation Found
373 Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; Rights of Persons Adjudged Entitled to Public Office; Delivery of Books and Papers; Damages
374 Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; Limitations
375 Remedial Law; Civil Procedure; Special Civil Actions; Quo Warranto; Judgment for Costs
376 Remedial Law; Civil Procedure; Special Civil Actions; Expropriation
377 Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Complaint
378 Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Entry of Plaintiff Upon Depositing Value With Authorized Government Depositary
379 Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Defenses and Objections
380 Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Order of Expropriation
381 Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Ascertainment of Compensation
382 Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Proceedings by Commissioners
383 Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Report by Commissioners and Judgment Thereupon
384 Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Action Upon Commissioners' Report
385 Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Uncertain Ownership; Conflicting Claims
386 Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Rights of Plaintiff After Judgment and Payment
387 Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Entry Not Delayed by Appeal; Effect of Reversal
388 Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Costs, By Whom Paid
389 Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Recording Judgment and Its Effects
390 Remedial Law; Civil Procedure; Special Civil Actions; Expropriation; Power of Guardian in Such Proceedings
391 Remedial Law; Civil Procedure; Special Civil Actions; Foreclosure of Real Estate Mortgage
392 Remedial Law; Civil Procedure; Special Civil Actions; Foreclosure of Real Estate Mortgage; Complaint in Action for Foreclosure
393 Remedial Law; Civil Procedure; Special Civil Actions; Foreclosure of Real Estate Mortgage; Judgment on Foreclosure for Payment or Sale
394 Remedial Law; Civil Procedure; Special Civil Actions; Foreclosure of Real Estate Mortgage; Sale of Mortgaged Property; Effect
395 Remedial Law; Civil Procedure; Special Civil Actions; Foreclosure of Real Estate Mortgage; Disposition of Proceeds of Sale
396 Remedial Law; Civil Procedure; Special Civil Actions; Foreclosure of Real Estate Mortgage; How Sale to Proceed in Case the Debt is Not All Due
397 Remedial Law; Civil Procedure; Special Civil Actions; Foreclosure of Real Estate Mortgage; Deficiency Judgment
398 Remedial Law; Civil Procedure; Special Civil Actions; Foreclosure of Real Estate Mortgage; Registration
399 Remedial Law; Civil Procedure; Special Civil Actions; Foreclosure of Real Estate Mortgage; Applicability of Other Provisions - Secs. 31, 32 and 34 of Rule 39
400 Remedial Law; Civil Procedure; Special Civil Actions; Partition
401 Remedial Law; Civil Procedure; Special Civil Actions; Partition; Complaint in Action For Partition of Real Estate
402 Remedial Law; Civil Procedure; Special Civil Actions; Partition; Order For Partition, and Partition by Agreement Thereunder
403 Remedial Law; Civil Procedure; Special Civil Actions; Partition; Commissioners to Make Partition When Parties Fail to Agree
404 Remedial Law; Civil Procedure; Special Civil Actions; Partition; Oath and Duties of Commissioners
405 Remedial Law; Civil Procedure; Special Civil Actions; Partition; Assignment or Sale of Real Estate by Commissioners
406 Remedial Law; Civil Procedure; Special Civil Actions; Partition; Report of Commissioners; Proceedings Not Binding Until Confirmed
407 Remedial Law; Civil Procedure; Special Civil Actions; Partition; Action of the Court Upon Commissioners' Report
408 Remedial Law; Civil Procedure; Special Civil Actions; Partition; Accounting for Rent And Profits in Action for Partition
409 Remedial Law; Civil Procedure; Special Civil Actions; Partition; Power of Guardian in Such Proceedings
410 Remedial Law; Civil Procedure; Special Civil Actions; Partition; Costs and Expenses to be Taxed and Collected
411 Remedial Law; Civil Procedure; Special Civil Actions; Partition; Judgment and Its Effect; Copy to be Recorded in Registry of Deeds
412 Remedial Law; Civil Procedure; Special Civil Actions; Partition; Neither Paramount Rights Nor Amicable Partition Affected by Rule
413 Remedial Law; Civil Procedure; Special Civil Actions; Partition; Partition of Personal Property
414 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer;
415 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Who May Institute Proceedings and When
416 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Lessor to Proceed Against Lessee Only After Demand
417 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Summary Procedure
418 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Pleadings Allowed
419 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Action on Complaint
420 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Answer
421 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Effect of Failure to Answer
422 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Preliminary Conference; Appearance of Parties
423 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Record of Preliminary Conference
424 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Submission of Affidavits and Position Papers
425 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Period for Rendition of Judgment
426 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Referral for Conciliation
427 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Prohibited Pleadings and Motions
428 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Affidavits
429 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Preliminary Injunction
430 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Resolving Defense of Ownership
431 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Judgment
432 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Judgment Conclusive Only on Possession; Not Conclusive in Actions Involving Title or Ownership
433 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Immediate Execution of Judgment; How to Stay Same
434 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Preliminary Mandatory Injunction in Case of Appeal
435 Remedial Law; Civil Procedure; Special Civil Actions; Forcible Entry and Unlawful Detainer; Immediate Execution on Appeal to Court of Appeals or Supreme Court
436 Remedial Law; Civil Procedure; Special Civil Actions; Contempt
437 Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Direct Contempt Punished Summarily
438 Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Remedy Therefrom
439 Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Indirect Contempt to be Punished After Charge and Hearing
440 Remedial Law; Civil Procedure; Special Civil Actions; Contempt; How Proceedings Commenced
441 Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Where Charge to be Filed
442 Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Hearing; Release on Bail
443 Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Punishment for Indirect Contempt
444 Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Imprisonment Until Order Obeyed
445 Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Proceeding When Party Released on Bail Fails to Answer
446 Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Court May Release Respondent
447 Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Review of Judgment or Final Order; Bond for Stay
448 Remedial Law; Civil Procedure; Special Civil Actions; Contempt; Contempt Against Quasi-Judicial Entities
449 Remedial Law; Special Proceedings
450 Remedial Law; Special Proceedings; Subject Matter and Applicability of General Rules
451 Remedial Law; Special Proceedings; Subject Matter and Applicability of General Rules; Subject Matter of Special Proceedings
452 Remedial Law; Special Proceedings; Subject Matter and Applicability of General Rules; Applicability of Rules of Civil Actions
453 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons
454 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Venue and Process
455 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Venue and Process; Where Estate of Deceased Persons Settled
456 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Venue and Process; Where Estate Settled Upon Dissolution of Marriage
457 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Venue and Process; Process
458 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Venue and Process; Presumption of Death
459 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Summary Settlement of Estates
460 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Summary Settlement of Estates; Extrajudicial Settlement by Agreement Between Heirs
461 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Summary Settlement of Estates; Summary Settlement of Estates of Small Value
462 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Summary Settlement of Estates; Bond to e Filed by Distirbutees
463 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Summary Settlement of Estates; Liability of Distributees and Estate
464 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Summary Settlement of Estates; Period for Claim of Minor or Incapacitated Persons
465 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Production of Will
466 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Production of Will; Allowance Necessary
467 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Production of Will; Conclusive as to Execution
468 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Production of Will; Custodian of Will to Deliver
469 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Production of Will; Executor to Present Will and Accept or Refuse Trust
470 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Production of Will; Custodian and Executor Subject to Fine for Neglect
471 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Production of Will; Person Retaining Will May be Committed
472 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will
473 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Who May Petition for the Allowance of Will
474 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Contents of Petition
475 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Court to Appoint Time for Proving Will; Notice Thereof to be Published
476 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Heirs, Devisees, Legatees, and Executors to be Notified by Mail Or Personally
477 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Proof at Hearing; What Sufficient in Absence of Contest
478 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Proof of Lost or Destroyed Will; Certificate Thereupon
479 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Proof When Witnesses Do Not Reside in Province
480 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Proof When Witnesses Dead or Insane or Not Reside in the Philippines
481 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Grounds for Disallowing Will
482 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Contestant to File Grounds of Contest
483 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Subscribing Witnesses Produced or Accounted For Where Will Contested
484 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Proof Where Testator Petitions for Allowance of Holographic Will
485 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance or Disallowance of Will; Certificate of Allowance Attached to Proved Will; to Be Recorded in The Office of Register of Deeds
486 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance of Will Proved Outside of Philippines and Administration of Estate Thereunder
487 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance of Will Proved Outside of Philippines and Administration of Estate Thereunder; Will Proved Outside The Philippines May Be Allowed Here
488 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance of Will Proved Outside of Philippines and Administration of Estate Thereunder; Notice of Hearing For Allowance
489 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance of Will Proved Outside of Philippines and Administration of Estate Thereunder; When Will Allowed, And Effect Thereof
490 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Allowance of Will Proved Outside of Philippines and Administration of Estate Thereunder; Estate, How Administered
491 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Letters Testamentary and of Administration
492 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Letters Testamentary and of Administration; Who Are Incompetent to Serve As Executors Or Administrators
493 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Letters Testamentary and of Administration; Executor of Executor Not to Administer Estate
494 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Letters Testamentary and of Administration; Married Women May Serve
495 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Letters Testamentary and of Administration; Letters Testamentary Issued When Will Allowed
496 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Letters Testamentary and of Administration; Where Some Coexecutors Disqualified, Others May Act
497 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Letters Testamentary and of Administration; When And to Whom Letters of Administration Granted
498 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Opposing Issuance of Letters Testamentary; Petition and Contest for Letters of Administration
499 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Opposing Issuance of Letters Testamentary; Petition and Contest for Letters of Administration; Opposition to Issuance of Letters Testamentary; Simultaneous Petition For Administration
500 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Opposing Issuance of Letters Testamentary; Petition and Contest for Letters of Administration; Contents of Petition For Letters of Administration
501 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Opposing Issuance of Letters Testamentary; Petition and Contest for Letters of Administration; Court to Set Time For Hearing; Notice Thereof
502 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Opposing Issuance of Letters Testamentary; Petition and Contest for Letters of Administration; Opposition to Petition For Administration
503 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Opposing Issuance of Letters Testamentary; Petition and Contest for Letters of Administration; Hearing And Order For Letters to Issue
504 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Opposing Issuance of Letters Testamentary; Petition and Contest for Letters of Administration; When Letters of Administration Granted to Any Applicant
505 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Special Administrator
506 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Special Administrator; Appointment of Special Administrator
507 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Special Administrator; Powers And Duties of Special Administrator
508 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Special Administrator; When Powers of Special Administrator Cease; Transfer of Effects; Pending Suits
509 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Bonds of Executors and Administrators;
510 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Bonds of Executors and Administrators; Bond to Be Given Before Issuance of Letters; Amount; Conditions
511 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Bonds of Executors and Administrators; Bond of Executor Where Directed in Will; When Further Bond Required
512 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Bonds of Executors and Administrators; Bonds of Joint Executors And Administrators
513 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Bonds of Executors and Administrators; Bond of Special Administrator
514 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Revocation of Administration, Death, Resignation, and Removal of Executors and Administrators;
515 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Revocation of Administration, Death, Resignation, and Removal of Executors and Administrators; Administration Revoked If Will Discovered; Proceedings Thereupon
516 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Revocation of Administration, Death, Resignation, and Removal of Executors and Administrators; Court May Remove Or Accept Resignation of Executor Or Administrator; Proceedings Upon Death, Resignation Or Removal
517 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Revocation of Administration, Death, Resignation, and Removal of Executors and Administrators; Acts Before Revocation, Resignation, Or Removal to Be Valid
518 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Revocation of Administration, Death, Resignation, and Removal of Executors and Administrators; Powers of New Executor Or Administrator; Renewal of License to Sell Real Estate
519 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Inventory and Appraisal; Provision for Support of Family;
520 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Inventory and Appraisal; Provision for Support of Family; Inventory And Appraisal to Be Returned Within Three Months
521 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Inventory and Appraisal; Provision for Support of Family; Certain Articles Not to Be Inventoried
522 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Inventory and Appraisal; Provision for Support of Family; Allowance to Widow And Family
523 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; General Powers and Duties of Executors and Administrators;
524 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; General Powers and Duties of Executors and Administrators; Executor Or Administrator to Have Access to Partnership Books And Property; How Right Enforced
525 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; General Powers and Duties of Executors and Administrators; Executor Or Administrator to Keep Buildings In Repair
526 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; General Powers and Duties of Executors and Administrators; Executor Or Administrator to Retain Whole Estate to Pay Debts, And to Administer Estate Not Willed
527 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators;
528 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; Executor Or Administrator Chargeable With All Estate And Income
529 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; Not to Profit By Increase Or Lose By Decrease in Value
530 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; When Not Accountable For Debts Due Estate
531 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; Accountable For Income From Realty Used By Him
532 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; Accountable If He Neglects Or Delays to Raise Or Pay Money
533 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; When Allowed Money Paid As Costs
534 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; What Expenses And Fees Allowed Executor Or Administrator; Not to Charge For Services As Attorney; Compensation Provided By Will Controls Unless Renounced
535 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; When Executor Or Administrator to Render Account
536 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; Examinations On Oath With Respect to Account
537 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; Account to Be Settled On Notice
538 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Accountability and Compensation of Executors and Administrators; Surety On Bond May Be Party to Accounting
539 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate
540 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Notice to Creditors to Be Issued By Court
541 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Time Within Which Claims Shall Be Filed
542 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Publication of Notice to Creditors
543 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Filing Copy of Printed Notice
544 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Claims Must Be Filed Under The Notice; If Not Filed, Barred; Exceptions
545 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Solidary Obligation of Decedent
546 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Mortgage Debt Due From Estate
547 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Claim of Executor Or Administrator Against An Estate
548 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; How to File A Claim; Contents Thereof; Notice to Executor Or Administrator
549 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Answer of Executor Or Administrator; Offsets
550 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Disposition of Admitted Claim
551 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Trial of Contested Claim
552 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Judgment Appealable
553 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Claims Against Estate; Costs
554 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators
555 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; Actions Which May And Which May Not Be Brought Against Executor Or Administrator
556 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; Executor Or Administrator May Bring Or Defend Actions Which Survive
557 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; Heir May Not Sue Until Share Assigned
558 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; Executor Or Administrator May Compound With Debtor
559 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; Mortgage Due Estate May Be Foreclosed
560 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; Proceedings When Property Concealed, Embezzled, Or Fraudulently Conveyed
561 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; Person Entrusted With Estate Compelled to Render Account
562 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; Embezzlement Before Letters Issued
563 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; Property Fraudulently Conveyed By Deceased May Be Recovered; When Executor Or Administrator Must Bring Action
564 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Actions by and Against Executors and Administrators; When Creditor May Bring Action; Lien For Costs
565 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate
566 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Debts Paid In Full If Estate Sufficient
567 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Part of Estate From Which Debt Paid When Provision Made By Will
568 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Personalty First Chargeable For Debts, Then Realty
569 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Estate to Be Retained to Meet Contingent Claims
570 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; How Contingent Claim Becoming Absolute In Two Years Allowed And Paid; Action Against Distributees Later
571 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Court to Fix Contributive Shares Where Devisees, Legatees, Or Heirs Have Been In Possession
572 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Order of Payment If Estate Insolvent
573 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Dividends to Be Paid In Proportion to Claims
574 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Estate of Insolvent Nonresident, How Disposed of
575 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; When And How Claim Proved Outside The Philippines Against Insolvent Resident's Estate Paid
576 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Order For Payment of Debts
577 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Orders Relating to Payment of Debts Where Appeal Is Taken
578 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; When Subsequent Distribution of Assets Ordered
579 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Creditors to Be Paid In Accordance With Terms of Order
580 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Time For Paying Debts And Legacies Fixed, Or Extended After Notice, Within What Periods
581 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Payment of the Debts of the Estate; Successor of Dead Executor Or Administrator May Have Time Extended on Notice Within Certain Period
582 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent;
583 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent; Order of Sale of Personalty
584 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent; Where Court May Authorize Sale, Mortgage, Or Other Encumbrance of Realty to Pay Debts And Legacies Through Personalty Not Exhausted
585 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent; Persons Interested May Prevent Such Sale, Mortgage Or Other Encumbrance By Giving Bond
586 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent; When Court May Authorize Sale of Estate As Beneficial to Interested Persons; Disposal of Proceeds
587 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent; When Court May Authorize Sale, Mortgage, Or Other Encumbrance of Estate to Pay Debts And Legacies In Other Countries
588 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent; When Court May Authorize Sale, Mortgage, Or Other Encumbrance of Realty Acquired On Execution Or Foreclosure
589 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent; Regulations For Granting Authority to Sell, Mortgage, Or Otherwise Encumer Estate
590 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent; When Court May Authorize Conveyance of Realty Which Deceased Contracted to Convey; Notice; Effect of Deed
591 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Sales, Mortgages, and Other Encumbrances of Property of Decedent; When Court May Authorize Conveyance of Lands Which Deceased Held In Trust
592 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Distribution and Partition of Estate
593 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Distribution and Partition of Estate; When Order For Distribution of Residue Made
594 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Distribution and Partition of Estate; Questions As to Advancement to Be Determined
595 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Distribution and Partition of Estate; By Whom Expenses of Partition Paid
596 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Distribution and Partition of Estate; Recording the Order of Partition of Estate
597 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Escheats
598 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Escheats; When and by Whom Petition Filed
599 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Escheats; Order for Hearing
600 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Escheats; Hearing and Judgment
601 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Escheats; When and by Whom Claim to Estate Filed
602 Remedial Law; Special Proceedings; Settlement of Estate of Deceased Persons; Escheats; Other Actions for Escheat
603 Remedial Law; Special Proceedings; General Guardians and Guardianship
604 Remedial Law; Special Proceedings; General Guardians and Guardianship; Venue
605 Remedial Law; Special Proceedings; General Guardians and Guardianship; Venue; Where to Institute Proceedings
606 Remedial Law; Special Proceedings; General Guardians and Guardianship; Venue; Meaning of Word "Incompetent"
607 Remedial Law; Special Proceedings; General Guardians and Guardianship; Venue; Transfer of Venue
608 Remedial Law; Special Proceedings; General Guardians and Guardianship; Appointment of Guardians
609 Remedial Law; Special Proceedings; General Guardians and Guardianship; Appointment of Guardians; Who May Petition for Appointment of Guardian for Resident
610 Remedial Law; Special Proceedings; General Guardians and Guardianship; Appointment of Guardians; Contents of Petition
611 Remedial Law; Special Proceedings; General Guardians and Guardianship; Appointment of Guardians; Court to Set Time for Hearing; Notice Thereof
612 Remedial Law; Special Proceedings; General Guardians and Guardianship; Appointment of Guardians; Opposition to Petition
613 Remedial Law; Special Proceedings; General Guardians and Guardianship; Appointment of Guardians; Hearing fnd Order for Letters to Issue
614 Remedial Law; Special Proceedings; General Guardians and Guardianship; Appointment of Guardians
615 Remedial Law; Special Proceedings; General Guardians and Guardianship; Appointment of Guardians; Parents as Guardians
616 Remedial Law; Special Proceedings; General Guardians and Guardianship; Appointment of Guardians; Service of Judgment
617 Remedial Law; Special Proceedings; General Guardians and Guardianship; Bonds of Guardians
618 Remedial Law; Special Proceedings; General Guardians and Guardianship; Bonds of Guardians; Bond to Be Given Before Issuance of Letters; Amount; Conditions
619 Remedial Law; Special Proceedings; General Guardians and Guardianship; Bonds of Guardians; When New Bond May Be Required and Old Sureties Discharged
620 Remedial Law; Special Proceedings; General Guardians and Guardianship; Bonds of Guardians; Bonds to Be Filed; Actions Thereon
621 Remedial Law; Special Proceedings; General Guardians and Guardianship; Selling and Encumbering Property of Ward
622 Remedial Law; Special Proceedings; General Guardians and Guardianship; Selling and Encumbering Property of Ward; Petition of Guardian for Leave to Sell or Encumber Estate
623 Remedial Law; Special Proceedings; General Guardians and Guardianship; Selling and Encumbering Property of Ward; Order to Show Cause Thereupon
624 Remedial Law; Special Proceedings; General Guardians and Guardianship; Selling and Encumbering Property of Ward; Hearing on Return of Order; Costs
625 Remedial Law; Special Proceedings; General Guardians and Guardianship; Selling and Encumbering Property of Ward; Contents of Order for Sale or Encumbrance and How Long Effective; Bond
626 Remedial Law; Special Proceedings; General Guardians and Guardianship; Selling and Encumbering Property of Ward; Court May Order Investment of Proceeds and Direct Management of Estate
627 Remedial Law; Special Proceedings; General Guardians and Guardianship; General Powers and Duties of Guardians
628 Remedial Law; Special Proceedings; General Guardians and Guardianship; General Powers and Duties of Guardians; To What Guardianship Shall Extend
629 Remedial Law; Special Proceedings; General Guardians and Guardianship; General Powers and Duties of Guardians; Guardian to Pay Debts of Ward
630 Remedial Law; Special Proceedings; General Guardians and Guardianship; General Powers and Duties of Guardians; Guardian to Settle Accounts, Collect Debts, and Appear in Actions For Ward
631 Remedial Law; Special Proceedings; General Guardians and Guardianship; General Powers and Duties of Guardians; Estate to Be Managed Frugally and Proceeds Applied to Maintenance of Ward
632 Remedial Law; Special Proceedings; General Guardians and Guardianship; General Powers and Duties of Guardians; Guardian May Be Authorized to Join in Partition Proceedings After Hearing
633 Remedial Law; Special Proceedings; General Guardians and Guardianship; General Powers and Duties of Guardians; Proceedings When Person Suspected of Embezzling or Concealing Property of Ward
634 Remedial Law; Special Proceedings; General Guardians and Guardianship; General Powers and Duties of Guardians; Inventories and Accounts of Guardians, and Appraisement of Estates
635 Remedial Law; Special Proceedings; General Guardians and Guardianship; General Powers and Duties of Guardians; When Guardian's Accounts Presented for Settlement; Expenses and Compensation Allowed
636 Remedial Law; Special Proceedings; General Guardians and Guardianship; Termination of Guardianship
637 Remedial Law; Special Proceedings; Trustees
638 Remedial Law; Special Proceedings; Trustees; Where Trustee Appointed
639 Remedial Law; Special Proceedings; Trustees; Appointment and Powers of Trustee Under Will; Executor of Former Trustee Need Not Administer Trust
640 Remedial Law; Special Proceedings; Trustees; Appointment and Powers of New Trustee Under Written Instrument
641 Remedial Law; Special Proceedings; Trustees; Appointment and Powers of New Trustee Under Written Instrument
642 Remedial Law; Special Proceedings; Trustees; Trustee Must File Bond
643 Remedial Law; Special Proceedings; Trustees; Conditions Included in Bond
644 Remedial Law; Special Proceedings; Trustees; Appraisal; Compensation of Trustee
645 Remedial Law; Special Proceedings; Trustees; Removal or Resignation of Trustee
646 Remedial Law; Special Proceedings; Trustees; Proceedings for Sale or Encumbrance of Trust Estate
647 Remedial Law; Special Proceedings; Adoption and Custody of Minors
648 Remedial Law; Special Proceedings; Adoption and Custody of Minors; Venue
649 Remedial Law; Special Proceedings; Adoption and Custody of Minors; Contents of Petition
650 Remedial Law; Special Proceedings; Adoption and Custody of Minors; Consent to Adoption
651 Remedial Law; Special Proceedings; Adoption and Custody of Minors; Order for Hearing
652 Remedial Law; Special Proceedings; Adoption and Custody of Minors; Hearing and Judgment
653 Remedial Law; Special Proceedings; Adoption and Custody of Minors; Proceedings as to Child Whose Parents are Separated; Appeal
654 Remedial Law; Special Proceedings; Adoption and Custody of Minors; Proceedings as to Vagrant or Abused Child
655 Remedial Law; Special Proceedings; Adoption and Custody of Minors; Service of Judgment
656 Remedial Law; Special Proceedings; Rescission and Revocation of Adoption
657 Remedial Law; Special Proceedings; Rescission and Revocation of Adoption; Who May File Petition; Grounds
658 Remedial Law; Special Proceedings; Rescission and Revocation of Adoption; Ordering to Answer
659 Remedial Law; Special Proceedings; Rescission and Revocation of Adoption; Judgment
660 Remedial Law; Special Proceedings; Rescission and Revocation of Adoption; Service of Judgment
661 Remedial Law; Special Proceedings; Rescission and Revocation of Adoption; Time Within to File Petition
662 Remedial Law; Special Proceedings; Hospitalization of Insane Persons
663 Remedial Law; Special Proceedings; Hospitalization of Insane Persons; Venue; Petition for Commitment
664 Remedial Law; Special Proceedings; Hospitalization of Insane Persons; Order for Hearing
665 Remedial Law; Special Proceedings; Hospitalization of Insane Persons; Hearing and Judgment
666 Remedial Law; Special Proceedings; Hospitalization of Insane Persons; Discharge of Insane
667 Remedial Law; Special Proceedings; Hospitalization of Insane Persons; Assistance of Fiscal in the Proceeding
668 Remedial Law; Special Proceedings; Habeas Corpus
669 Remedial Law; Special Proceedings; Habeas Corpus; To What Habeas Corpus Extends
670 Remedial Law; Special Proceedings; Habeas Corpus; Who May Grant the Writ
671 Remedial Law; Special Proceedings; Habeas Corpus; Requisites For Application Therefor
672 Remedial Law; Special Proceedings; Habeas Corpus; When Writ Not Allowed or Discharge Authorized
673 Remedial Law; Special Proceedings; Habeas Corpus; When the Writ Must be Granted and Issued
674 Remedial Law; Special Proceedings; Habeas Corpus; To Whom Writ Directed, and What to Require
675 Remedial Law; Special Proceedings; Habeas Corpus; How Prisoner Designated and Writ Served
676 Remedial Law; Special Proceedings; Habeas Corpus; How Writ Executed and Returned
677 Remedial Law; Special Proceedings; Habeas Corpus; Contents of Return
678 Remedial Law; Special Proceedings; Habeas Corpus; Return to Be Signed and Sworn to
679 Remedial Law; Special Proceedings; Habeas Corpus; Hearing on Return; Adjournments
680 Remedial Law; Special Proceedings; Habeas Corpus; When The Return Evidence, and When Only a Plea
681 Remedial Law; Special Proceedings; Habeas Corpus; When Person Lawfully Imprisoned Recommitted, and When Let to Bail
682 Remedial Law; Special Proceedings; Habeas Corpus; When Prisoner Discharged if No Appeal
683 Remedial Law; Special Proceedings; Habeas Corpus; Penalty for Refusing to Issue Writ, or for Disobeying the Same
684 Remedial Law; Special Proceedings; Habeas Corpus; Person Discharged Not to Be Again Imprisoned
685 Remedial Law; Special Proceedings; Habeas Corpus; When Prisoner May Be Removed From One Custody to Another
686 Remedial Law; Special Proceedings; Habeas Corpus; Record of Writ, Fees and Costs
687 Remedial Law; Special Proceedings; Change of Name
688 Remedial Law; Special Proceedings; Change of Name; Venue
689 Remedial Law; Special Proceedings; Change of Name; Contents of Petition
690 Remedial Law; Special Proceedings; Change of Name; Order for Hearing
691 Remedial Law; Special Proceedings; Change of Name; Hearing
692 Remedial Law; Special Proceedings; Change of Name; Judgment
693 Remedial Law; Special Proceedings; Change of Name; Service of Judgment
694 Remedial Law; Special Proceedings; Voluntary Dissolution of Corporations;
695 Remedial Law; Special Proceedings; Voluntary Dissolution of Corporations; Where, By Whom and on What Showing Application Made
696 Remedial Law; Special Proceedings; Voluntary Dissolution of Corporations; Order Thereupon for Filing Objections
697 Remedial Law; Special Proceedings; Voluntary Dissolution of Corporations; Hearing, Dissolution, and Disposition of Assets; Receiver
698 Remedial Law; Special Proceedings; Voluntary Dissolution of Corporations; What Shall Constitute Record
699 Remedial Law; Special Proceedings; Judicial Approval of Voluntary Recognition of Minor Natural Children
700 Remedial Law; Special Proceedings; Judicial Approval of Voluntary Recognition of Minor Natural Children; Venue
701 Remedial Law; Special Proceedings; Judicial Approval of Voluntary Recognition of Minor Natural Children; Contents of Petition
702 Remedial Law; Special Proceedings; Judicial Approval of Voluntary Recognition of Minor Natural Children; Order for Hearing
703 Remedial Law; Special Proceedings; Judicial Approval of Voluntary Recognition of Minor Natural Children; Opposition
704 Remedial Law; Special Proceedings; Judicial Approval of Voluntary Recognition of Minor Natural Children; Judgment
705 Remedial Law; Special Proceedings; Judicial Approval of Voluntary Recognition of Minor Natural Children; Service of Judgment Upon Civil Registrar
706 Remedial Law; Special Proceedings; Constitution of Family Home
707 Remedial Law; Special Proceedings; Constitution of Family Home; Who May Constitute
708 Remedial Law; Special Proceedings; Constitution of Family Home; Contents of Petition
709 Remedial Law; Special Proceedings; Constitution of Family Home; Notice and Publication
710 Remedial Law; Special Proceedings; Constitution of Family Home; Objection and Date of Hearing
711 Remedial Law; Special Proceedings; Constitution of Family Home; Order
712 Remedial Law; Special Proceedings; Constitution of Family Home; Registration of Order
713 Remedial Law; Special Proceedings; Absentees
714 Remedial Law; Special Proceedings; Absentees; Appointment of Representative
715 Remedial Law; Special Proceedings; Absentees; Declaration of Absence; Who May Petition
716 Remedial Law; Special Proceedings; Absentees; Contents of Petition
717 Remedial Law; Special Proceedings; Absentees; Time of Hearing; Notice and Publication Thereof
718 Remedial Law; Special Proceedings; Absentees; Opposition
719 Remedial Law; Special Proceedings; Absentees; Proof at Hearing; Order
720 Remedial Law; Special Proceedings; Absentees; Who May be Appointed
721 Remedial Law; Special Proceedings; Absentees; Termination of Administration
722 Remedial Law; Special Proceedings; Cancellation or Correction of Entries in the Civil Registry
723 Remedial Law; Special Proceedings; Cancellation or Correction of Entries in the Civil Registry; Who May File Petition
724 Remedial Law; Special Proceedings; Cancellation or Correction of Entries in the Civil Registry; Entries Subject to Cancellation or Correction
725 Remedial Law; Special Proceedings; Cancellation or Correction of Entries in the Civil Registry; Parties
726 Remedial Law; Special Proceedings; Cancellation or Correction of Entries in the Civil Registry; Notice and Publication
727 Remedial Law; Special Proceedings; Cancellation or Correction of Entries in the Civil Registry; Opposition
728 Remedial Law; Special Proceedings; Cancellation or Correction of Entries in the Civil Registry; Expediting Proceedings
729 Remedial Law; Special Proceedings; Cancellation or Correction of Entries in the Civil Registry; Order
730 Remedial Law; Special Proceedings; Appeals in Special Proceedings
731 Remedial Law; Special Proceedings; Appeals in Special Proceedings; Orders or Judgments From Which Appeals May Be Taken
732 Remedial Law; Special Proceedings; Appeals in Special Proceedings; Advance Distribution in Special Proceedings
733 Remedial Law; Criminal Procedure
734 Remedial Law; Criminal Procedure; Jurisdiction
735 Remedial Law; Criminal Procedure; Venue
736 Remedial Law; Criminal Procedure; Prosecution of Criminal Offenses
737 Remedial Law; Criminal Procedure; Prosecution of Criminal Offenses; Institution of Criminal Actions
738 Remedial Law; Criminal Procedure; Prosecution of Criminal Offenses; Complaint
739 Remedial Law; Criminal Procedure; Prosecution of Criminal Offenses; Complaint; Defense
740 Remedial Law; Criminal Procedure; Prosecution of Criminal Offenses; Information
741 Remedial Law; Criminal Procedure; Prosecution of Criminal Offenses; Information; Definition
742 Remedial Law; Criminal Procedure; Prosecution of Criminal Offenses; Who Must Prosecute Criminal Actions
743 Remedial Law; Criminal Procedure; Prosecution of Criminal Offenses; Sufficiency of Complaint or Information
744 Remedial Law; Criminal Procedure; Prosecution of Civil Actions
745 Remedial Law; Criminal Procedure; Preliminary Investigation
746 Remedial Law; Criminal Procedure; Arrests
747 Remedial Law; Criminal Procedure; Search and Seizure
748 Remedial Law; Criminal Procedure; Bail
749 Remedial Law; Criminal Procedure; Rights of Accused
750 Remedial Law; Criminal Procedure; Arraignment and Plea
751 Remedial Law; Criminal Procedure; Motion to Quash
752 Remedial Law; Criminal Procedure; Pre-Trial
753 Remedial Law; Criminal Procedure; Trial
754 Remedial Law; Criminal Procedure; Judgment
755 Remedial Law; Criminal Procedure; New Trial and Reconsideration
756 Remedial Law; Criminal Procedure; Appeal
757 Remedial Law; Criminal Procedure; Procedure in the Municipal Trial Courts
758 Remedial Law; Criminal Procedure; Procedure in the Court of Appeals
759 Remedial Law; Evidence
760 Remedial Law; Evidence; Definition of Evidence
761 Remedial Law; Evidence; Admissibility of Evidence
762 Remedial Law; Evidence; Relevancy
763 Remedial Law; Evidence; Relevancy; Collateral Matters
764 Remedial Law; Evidence; What Need Not be Proved
765 Remedial Law; Evidence; What Need Not be Proved; Judicial Notice
766 Remedial Law; Evidence; What Need Not be Proved; Judicial Admissions
767 Remedial Law; Evidence; Rules of Admissibility
768 Remedial Law; Evidence; Rules of Admissibility; Object or Real Evidence
769 Remedial Law; Evidence; Rules of Admissibility; Documentary Evidence
770 Remedial Law; Evidence; Rules of Admissibility; Documentary Evidence; Best Evidence Rule
771 Remedial Law; Evidence; Rules of Admissibility; Documentary Evidence; Secondary Evidence
772 Remedial Law; Evidence; Rules of Admissibility; Documentary Evidence; Parol Evidence Rule
773 Remedial Law; Evidence; Rules of Admissibility; Documentary Evidence; Interpretation of Documents
774 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Parental and Filial Privilege
775 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Credibility of Witnesses
776 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Credibility of Witnesses: Assessment Thereof by Trial Court
777 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Qualification of Witnesses
778 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Qualification of Witnesses; Disqualification by Reason of Marriage
779 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Qualification of Witnesses; Disqualification by Reason of Death of Adverse Party
780 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Qualification of Witnesses; Disqualification by Reason of Insanity of Adverse Party
781 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Qualification of Witnesses; Disqualification by Reason of Privileged Communication
782 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Testimonial Privilege
783 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Admissions and Confessions
784 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Admissions and Confessions; Admission of a Party
785 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Admissions and Confessions; Admission by Third Party
786 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Admissions and Confessions; Admission by Co-Partner or Agent
787 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Admissions and Confessions; Admission by Conspirator
788 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Admissions and Confessions; Admission by Privies
789 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Admissions and Confessions; Admission by Silence
790 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Admissions and Confessions; Confession
791 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Previous Conduct as Evidence
792 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Previous Conduct as Evidence; Similar Acts as Evidence
793 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Previous Conduct as Evidence; Unaccepted Offer
794 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Testimonial Knowledge
795 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Hearsay Rule
796 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule
797 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Dying Declaration
798 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Declaration Against Interest
799 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Act or Declaration About Pedigree
800 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Family Reputation or Tradition Regarding Pedigree
801 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Common Reputation
802 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Part of the Res Gestae
803 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Entries in the Course of Business
804 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Entries in Official Records
805 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Commercial Lists and the Like
806 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Learned Treatises
807 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Exceptions to the Hearsay Rule; Testimony or Deposition at a Former Proceeding
808 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Opinion Rule
809 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Opinion Rule; Opinion of Expert Witness
810 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Opinion Rule; Opinion of Ordinary Witness
811 Remedial Law; Evidence; Rules of Admissibility; Testimonial Evidence; Character Evidence
812 Remedial Law; Evidence; Burden of Proof and Presumptions
813 Remedial Law; Evidence; Burden of Proof and Presumptions; Burden of Proof
814 Remedial Law; Evidence; Burden of Proof and Presumptions; Conclusive Presumptions
815 Remedial Law; Evidence; Burden of Proof and Presumptions; Disputable Presumptions
816 Remedial Law; Evidence; Burden of Proof and Presumptions; No Presumption of Legitimacy or Illegitimacy
817 Remedial Law; Evidence; Presentation of Evidence
818 Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses
819 Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Examination to Be Done in Open Court
820 Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Proceedings to Be Recorded
821 Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Rights and Obligations of Witnesses
822 Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Order in Examination of Individual Witness
823 Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Order in Examination of Individual Witness; Direct Examination
824 Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Order in Examination of Individual Witness; Cross Examination
825 Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Order in Examination of Individual Witness; Redirect Examination
826 Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Order in Examination of Individual Witness; Recross Examination
827 Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Recalling Witness
828 Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Leading and Misleading Questions
829 Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Impeachment of Adverse Party's Witness
830 Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Party May Not Impeach His Own Witness
831 Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Evidence of Good Character
832 Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Exclusion and Separation of Witnesses
833 Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; When Witness May Refer to Memorandum
834 Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; When Part of Transaction, Writing or Record is Given in Evidence, the Remainder is Admissible
835 Remedial Law; Evidence; Presentation of Evidence; Examination of Witnesses; Right to Inspect Writing Shown to Witness
836 Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents
837 Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Classes of Documents
838 Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Classes of Documents; Public Document
839 Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Classes of Documents; Private Document
840 Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; How Genuineness of Handwriting is Proved
841 Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Public Documents as Evidence
842 Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Proof of Official Record
843 Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; What Attestation of Copy Must State
844 Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Irremovability of Public Record
845 Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Public Record of a Public Document
846 Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Proof of Lack of Record
847 Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; How Judicial Record Impeached
848 Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Proof of Notarial Documents
849 Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Alterations in Document
850 Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Seal
851 Remedial Law; Evidence; Presentation of Evidence; Authentication and Proof of Documents; Documentary Evidence in an Unofficial Language
852 Remedial Law; Evidence; Presentation of Evidence; Offer and Objection
853 Remedial Law; Evidence; Presentation of Evidence; Offer and Objection; Offer of Evidence
854 Remedial Law; Evidence; Presentation of Evidence; Offer and Objection; Offer of Evidence; When to Make Offer
855 Remedial Law; Evidence; Presentation of Evidence; Offer and Objection; Objection
856 Remedial Law; Evidence; Presentation of Evidence; Offer and Objection; Ruling
857 Remedial Law; Evidence; Presentation of Evidence; Offer and Objection; Striking Out Answer
858 Remedial Law; Evidence; Presentation of Evidence; Offer and Objection; Tender of Excluded Evidence
859 Remedial Law; Evidence; Weight and Sufficiency of Evidence
860 Remedial Law; Evidence; Weight and Sufficiency of Evidence; Preponderance of Evidence
861 Remedial Law; Evidence; Weight and Sufficiency of Evidence; Preponderance of Evidence; Evidence Adduced by One Side Is, as a Whole, Superior to or Has Greater Weight Than That of the Other
862 Remedial Law; Evidence; Weight and Sufficiency of Evidence; Preponderance of Evidence; Factors to Consider in Determining Whether or Not There is Preponderance of Evidence
863 Remedial Law; Evidence; Weight and Sufficiency of Evidence; Proof Beyond Reasonable Doubt
864 Remedial Law; Evidence; Weight and Sufficiency of Evidence; Extrajudicial Confession
865 Remedial Law; Evidence; Weight and Sufficiency of Evidence; Circumstantial Evidence
866 Remedial Law; Evidence; Weight and Sufficiency of Evidence; Substantial Evidence
867 Remedial Law; Evidence; Weight and Sufficiency of Evidence; Power of Court to Stop Further Evidence
868 Remedial Law; Evidence; Weight and Sufficiency of Evidence; Evidence on Motion
869 Remedial Law; Evidence; Perpetuation of Testimony
870 Remedial Law; Evidence; Perpetuation of Testimony; Petition to Perpetuate Testimony
871 Remedial Law; Evidence; Perpetuation of Testimony; Petition to Perpetuate Testimony; Contents of Petition
872 Remedial Law; Evidence; Perpetuation of Testimony; Petition to Perpetuate Testimony; Notice and Service
873 Remedial Law; Evidence; Perpetuation of Testimony; Petition to Perpetuate Testimony; Order of Examination
874 Remedial Law; Evidence; Perpetuation of Testimony; Petition to Perpetuate Testimony; Reference to Court
875 Remedial Law; Evidence; Perpetuation of Testimony; Petition to Perpetuate Testimony; Use of Depositions
876 Remedial Law; Evidence; Perpetuation of Testimony; Petition to Perpetuate Testimony; Depositions Pending Appeal

26
data/csvs/taxation.csv

@ -0,0 +1,26 @@
"Taxation Law"
"Taxation Law; General Principles of Taxation "
"Taxation Law; Nature and Limitations of the Power of Taxation "
"Taxation Law; Double Taxation "
"Taxation Law; Situs of Taxation "
"Taxation Law; Exemptions from Taxation "
"Taxation Law; Sources"
"Taxation Law; Application"
"Taxation Law; Interpretation of Tax Laws "
"Taxation Law; Tax Administration "
"Taxation Law; Tax Remedies "
"Taxation Law; Court of Tax Appeals "
"Taxation Law; Court of Tax Appeals; Jurisdiction"
"Taxation Law; Customs and Tariff Laws "
"Taxation Law; Real Property Taxation "
"Taxation Law; Local Taxation "
"Taxation Law; Tax on Income"
"Taxation Law; Bureau of Internal Revenue; Organization and Functions "
"Taxation Law; Bureau of Internal Revenue; Powers"
"Taxation Law; Estate and Donor's Taxes "
"Taxation Law; Value-Added Tax "
"Taxation Law; Other Percentage Taxes "
"Taxation Law; Excise Taxes on Certain Goods "
"Taxation Law; Documentary Stamp Tax "
"Taxation Law; Withholding Tax"
"Taxation Law; Tax Evasion"
1 Taxation Law
2 Taxation Law; General Principles of Taxation
3 Taxation Law; Nature and Limitations of the Power of Taxation
4 Taxation Law; Double Taxation
5 Taxation Law; Situs of Taxation
6 Taxation Law; Exemptions from Taxation
7 Taxation Law; Sources
8 Taxation Law; Application
9 Taxation Law; Interpretation of Tax Laws
10 Taxation Law; Tax Administration
11 Taxation Law; Tax Remedies
12 Taxation Law; Court of Tax Appeals
13 Taxation Law; Court of Tax Appeals; Jurisdiction
14 Taxation Law; Customs and Tariff Laws
15 Taxation Law; Real Property Taxation
16 Taxation Law; Local Taxation
17 Taxation Law; Tax on Income
18 Taxation Law; Bureau of Internal Revenue; Organization and Functions
19 Taxation Law; Bureau of Internal Revenue; Powers
20 Taxation Law; Estate and Donor's Taxes
21 Taxation Law; Value-Added Tax
22 Taxation Law; Other Percentage Taxes
23 Taxation Law; Excise Taxes on Certain Goods
24 Taxation Law; Documentary Stamp Tax
25 Taxation Law; Withholding Tax
26 Taxation Law; Tax Evasion

6
db/migrate/20220215025319_remove_document_type_and_document_id_in_doctrines.rb

@ -0,0 +1,6 @@
class RemoveDocumentTypeAndDocumentIdInDoctrines < ActiveRecord::Migration[6.1]
def up
remove_column :doctrines, :document_type, :string
remove_column :doctrines, :document_id, :integer
end
end

5
db/migrate/20220216084942_add_headnote_in_doctrines.rb

@ -0,0 +1,5 @@
class AddHeadnoteInDoctrines < ActiveRecord::Migration[6.1]
def change
add_column :doctrines, :headnote, :text, default: "", null: false
end
end

10
db/seeds.rb

@ -61,3 +61,13 @@ Doctrine.find_each do |doctrine|
ids << doctrine.id
doc.doctrine_ids = ids.uniq
end
Cdao::Subject.parse_csv_file(Rails.root.join("data/csvs/civil.csv"))
Cdao::Subject.parse_csv_file(Rails.root.join("data/csvs/commercial.csv"))
Cdao::Subject.parse_csv_file(Rails.root.join("data/csvs/criminal.csv"))
Cdao::Subject.parse_csv_file(Rails.root.join("data/csvs/labor.csv"))
Cdao::Subject.parse_csv_file(Rails.root.join("data/csvs/taxation.csv"))
Cdao::Subject.parse_csv_file(Rails.root.join("tmp/csvs/political.csv"))
Cdao::Subject.parse_csv_file(Rails.root.join("tmp/csvs/remedial.csv"))
Cdao::Subject.parse_csv_file(Rails.root.join("tmp/csvs/legal.csv"))

Loading…
Cancel
Save