cegp013091 - dypiet, ambi

17
Total No. of Questions : 10] [5560]-582 T.E. (Computer Engineering) DATA BASE MANAGEMENT SYSTEM (2015 Pattern) (Semester - I) Time : 2½ Hours] [Max. Marks :70 Instructions to the candidates: 1) Answer Q.1 or Q.2, Q.3 or Q.4 Q.5 or Q.6, Q.7 or Q.8, Q.9 or Q.10. 2) Neat diagrams must be drawn wherever necessary. 3) Figures to the right indicate full marks. 4) Assume suitable data, if necessary. P3626 [Total No. of Pages : 3 SEAT No. : Q1) a) Consider following schema: [5] account (acct-no, branch - name, balance) Depositor (cust - name, acct - no) borrower (cust-name, loan-no) loan (loan - no, branch - name, amount) Write following queries using SQL (any 2) i) Find names of all customers who have a loan at the Redwood branch. ii) Find all customers who are having an account and loan or both. iii) Find average account balance at each branch. b) Define DBMS. Explain advantages of DBMS over file system. [5] OR Q2) a) For the database system to be usable, it must retrieve data efficiently. The need of efficiency has led designers to use complex data structures to represent data in the database. Developers hide this complexity from the database system users through several levels of abstraction. Explain those levels of abstraction in detail. [5] b) Write a PL/SQL block for following requirement and handle the exceptions. [5] Roll no. of student will be entered by user. Attendance of roll no. entered by user will be checked in Student table. If attendance is less than 75% then display the message “Term not granted” and set the status in Student table as “D”. Otherwise display message “Term granted” and set the status in Student table as “ND”. P.T.O. CEGP013091 49.248.216.238 08/05/2019 13:32:14 static-238 CEGP013091 49.248.216.238 08/05/2019 13:32:14 static-238 CEGP013091 49.248.216.238 08/05/2019 13:32:14 static-238

Upload: others

Post on 11-Feb-2022

4 views

Category:

Documents


0 download

TRANSCRIPT

Total No. of Questions : 10]

[5560]-582T.E. (Computer Engineering)

DATA BASE MANAGEMENT SYSTEM(2015 Pattern) (Semester - I)

Time : 2½ Hours] [Max. Marks :70Instructions to the candidates:

1) Answer Q.1 or Q.2, Q.3 or Q.4 Q.5 or Q.6, Q.7 or Q.8, Q.9 or Q.10.2) Neat diagrams must be drawn wherever necessary.3) Figures to the right indicate full marks.4) Assume suitable data, if necessary.

P3626 [Total No. of Pages : 3

SEAT No. :

Q1) a) Consider following schema: [5]account (acct-no, branch - name, balance)Depositor (cust - name, acct - no)borrower (cust-name, loan-no)loan (loan - no, branch - name, amount)Write following queries using SQL (any 2)i) Find names of all customers who have a loan at the Redwood branch.ii) Find all customers who are having an account and loan or both.iii) Find average account balance at each branch.

b) Define DBMS. Explain advantages of DBMS over file system. [5]

OR

Q2) a) For the database system to be usable, it must retrieve data efficiently.The need of efficiency has led designers to use complex data structuresto represent data in the database. Developers hide this complexity fromthe database system users through several levels of abstraction. Explainthose levels of abstraction in detail. [5]

b) Write a PL/SQL block for following requirement and handle theexceptions. [5]

Roll no. of student will be entered by user. Attendance of roll no. enteredby user will be checked in Student table. If attendance is less than 75%then display the message “Term not granted” and set the status in Studenttable as “D”. Otherwise display message “Term granted” and set thestatus in Student table as “ND”.

P.T.O.

CEGP0

1309

1

49.2

48.2

16.2

38 0

8/05

/201

9 13

:32:

14 st

atic

-238CEG

P013

091

49.2

48.2

16.2

38 0

8/05

/201

9 13

:32:

14 st

atic

-238

CEGP0

1309

1

49.2

48.2

16.2

38 0

8/05

/201

9 13

:32:

14 st

atic

-238

2[5560]-582

Q3) a) It is easy to create index on all attributes of any relation, why it is notrecommended to create index on all attributes? [5]

b) Write PL/SQL code block that raise a user defined exception whenbusiness rule is violated. Business Rule for client - master table specifieswhen the value of bal - due field is less than 0 handle the exception. [5]

OR

Q4) A university registrar’s office maintains data about the following entities:[10]

• courses, including number, title, credits, syllabus, and prerequisites;

• course offerings, including course number, year, semester, section number,

• instructor(s), timings, and classroom;

• Students, including student-id, name, and program; and

• instructors, including identifiation number, name, department and title

Further, the enrollment of students in courses and grades awarded to students ineach course they are enrolled for must be appropriately modeled.

a) Construct an E-R diagram for the registrar’s office. Document allassumptions that you make about the mapping constraints.

b) Construct appropriate tables for E-R diagram designed with aboveRequirements.

Q5) a) To ensure atomicity despite failures we use Recovery Methods, Explainin detail Log-Based Recovery method. [8]

b) What benefit does rigorous two-phase locking provide? How does itcompare with other forms of two - phase locking? [9]

OR

Q6) a) State and explain the ACID Properties. During its execution, a transactionpasses through several states, until it finally commits or aborts. List allpossible sequences of states through which a transaction may pass.Explain the situations when each state transition occurs. [8]

b) Suppose a transaction Ti issues a read command on data item Q. How

time - stamp based protocol decides whether to allow the operation tobe executed or not using time - stamp based protocol of concurrencycontrol. [9]

CEGP0

1309

1

49.2

48.2

16.2

38 0

8/05

/201

9 13

:32:

14 st

atic

-238CEG

P013

091

49.2

48.2

16.2

38 0

8/05

/201

9 13

:32:

14 st

atic

-238

CEGP0

1309

1

49.2

48.2

16.2

38 0

8/05

/201

9 13

:32:

14 st

atic

-238

3[5560]-582

Q7) a) For concurrency control in distributed transaction distributed lock managerapproach is used: explain in detail different approaches for dealing withreplication of data items in distributed lock manager approach. [8]

b) Describe Two Phase Commit (2PC) protocol. Explain how 2PC protocolresponds in different ways to various types of failures like site failure,coordinator failure and network partition. [9]

OR

Q8) a) Explain Data Replication and Data Fragmentation in Distributed DataStorage. [8]

b) Explain in details two important issues Speedup and Scale up in ParallelDatabases. Also explain which factors work against efficient paralleloperation and can diminish both speedup and scaleup. [9]

Q9) a) List the different NOSQL data Models. Explain document store NOSQLdata model with example. [8]

b) Explain the CAP theorem referred during the development of anydistributed application. [8]

OR

Q10)a) Analyze the use of NoSQL databases in current social networkingenvironment also explain need of NoSQL databases in social networkingenvironment over RDBMS. [8]

b) BASE Transactions ensures the properties like Basically Available, SoftState, and Eventual Consistency. Explain each property with itssignificance. How soft state of system is depend on Eventual consistencyproperty. [8]

CEGP0

1309

1

49.2

48.2

16.2

38 0

8/05

/201

9 13

:32:

14 st

atic

-238CEG

P013

091

49.2

48.2

16.2

38 0

8/05

/201

9 13

:32:

14 st

atic

-238

CEGP0

1309

1

49.2

48.2

16.2

38 0

8/05

/201

9 13

:32:

14 st

atic

-238

��� �� ����� � �� ������� ����� ���� ������� ��������� ��� ���������������������� ��� !�"���#$������ ����� ������� �!� �������������� ��� �� �������%�!��!����������!���&��%��'�������������!�����������������()��!����!����������������������!���!���������������!������!��������( !�����������������������������%������'�����������������������(����$�����������*"���#$������+$������#,�%"�������

�� -�������.����'�������������!�����������!���� ���.����'��+.��#)�% /����#,���%����#,���% ����'% 0������#1���%1����������"����+.��#2��#)�%"����#$�����%"����#1����1����������+.��#2��#)�%.��#1����������%$�������#/������������������ ��������������������������+��'3��

�� �����!�!�������������!��!�&������!����&�����������(

��� �������!������������'���!�&����!�!��!��������'�����!����������(

���� ������� ������'�����������������!������'���!��������4�������(

������������� ������������

��������������� �����

����������� � ��������������� �

����������� �!��� ���"�������#��$%������

����������� �� �������� ���������� ��������������������������

�� �������� ������� ������� ������� ������� �����

�� ���� ����������� � �����!��"���#����$�

�� %����� � �!� ��!� ����#��� &�''��(��

�� ������ ����� '� ����� �& ��#����$

$#&��

������

���������

CEGP0

1309

1

49.2

48.2

16.2

38 0

4/12

/201

8 09

:13:

12 st

atic

-238CEG

P013

091

49.2

48.2

16.2

38 0

4/12

/201

8 09

:13:

12 st

atic

-238

CEGP0

1309

1

49.2

48.2

16.2

38 0

4/12

/201

8 09

:13:

12 st

atic

-238

������� � �� �

52

�� �� 2����!6������'����������������788*�������������&���������������( �����!����������������������%2����!���!�����������������������!������������������!��������������!�����&��������!�����(9���������������!��������������������������!���������� ���

�� /�����!��&�������������������������+����������%���%!�������(�%2����!�������������!�������������������������������%��������������%���������������&����������������������������+����������%������������%��������!��������(�

��� /�� ���! ���� �!� ��������� ����������� �� �������� -����������������������������������������(

���� 2����!!�����������!�'���������!����������������������������� �!� ���� ���'����( !� ���������������� �!�'���% '����%�����%��������!���������!�������������'������(

�&� 2����!!�����������!�'���������!��&������������������������������� �!� ���� ��� '����( !� ������� ������� �� �!� ���������!���������������!�'���%+!�������������������������!���%����������&���������!�������!�'���%����������&�������������������*'���������%����!������������������'������(

1�����.*2�����������!�������������( �����'�!���'��������������!�����'�'��(

�� .������:,/���"-,/($����������!��������������( ���

�� �� -��������!���!���� ����������#����#������+����%�����#����#���������%����#������� ����������������� ������ ������'��������'�!��������������������'��������

�!����������:�!��������������������!�;(��� �����1������� ��������������&��!����&������������������

��������������������� �� �����( )� �����' �������� ������������������������'��������%�!'��������������������������������<

�� )������'��������������������������������'��������%�!'����������������������������������������������< ���

52

CEGP0

1309

1

49.2

48.2

16.2

38 0

4/12

/201

8 09

:13:

12 st

atic

-238CEG

P013

091

49.2

48.2

16.2

38 0

4/12

/201

8 09

:13:

12 st

atic

-238

CEGP0

1309

1

49.2

48.2

16.2

38 0

4/12

/201

8 09

:13:

12 st

atic

-238

������� � �� �

��� �� 1��� �!� �&�����1������� '���� ��������( .������ ��� �������������������( ���

�� .�������!�� ������� �' ���������� � ���������� �� ��������� ���������������������(.�������!'���!���!���������������'������������������������������������( ���

��� �� .�������!�-��������-������� ������=������'���!�������( �����&��'��������*�������=������!�������&����������=����%�!'�������!���=����������������=������'���!���!��&����������=������'< ���

�� .�������!� ��!������������������!��!��������������������������=������'( ��!���������������������������������������������������������!��������'�������($����������������&������������������!������������������������������!���������������(���

52

� � �� ���������������!�$-)1���������(1�����������������%�������������������!����!��&����������%�������������'���������������(��������������� ��������� �� ������ �!����!�!��! � �������������'����(.�������!������������!�����!���������������������( ���

�� -!����!��!�������������!�������&����������=���������(0�����''���������(+,����

�>

�����������������($�����������!��������

��&�������&�������!���������������������&�������!�����������������!����������!�������&�������� ���

CEGP0

1309

1

49.2

48.2

16.2

38 0

4/12

/201

8 09

:13:

12 st

atic

-238CEG

P013

091

49.2

48.2

16.2

38 0

4/12

/201

8 09

:13:

12 st

atic

-238

CEGP0

1309

1

49.2

48.2

16.2

38 0

4/12

/201

8 09

:13:

12 st

atic

-238

������� � �� �

��� �� .��������������������������������� ��������� ���������������1��������($�����������!��! ������������������ ���������������������������������������!���!�����������������( ���

�� .������1���2�������������1���/��������������1����������1��� ������($���������� �!���&������������!�'��������������������������( ���

52

��� �� �!���������������������1�������$��!���������<.���������!�!�����&�����������������&���������( ���

�� 1������� ��!���-�����+3-��������(.������!��3-�����������������������������'���&�������'����������������������������%�������������������������������������( ���

��� �� .�������!����������� ��?�,� ��( ���

�� .�����������������'�!���,� ��1�������4�����( ���

�� .�������!�91/ ���4��2�������9$155( ���

52

���� �� .������ �!�-$ �!����� �������� ������ �!� ��&�������� �� ��'����������������������( ���

�� "$ . �������������������!���������������"�������'$&�������% ��� ����%.&������-���������'����������!�������'���!���������������(9��������������'��������������.&����������������'�������'<���

����

CEGP0

1309

1

49.2

48.2

16.2

38 0

4/12

/201

8 09

:13:

12 st

atic

-238CEG

P013

091

49.2

48.2

16.2

38 0

4/12

/201

8 09

:13:

12 st

atic

-238

CEGP0

1309

1

49.2

48.2

16.2

38 0

4/12

/201

8 09

:13:

12 st

atic

-238

������������� ������������

�������������� ������

������� �� ��

����� ����� ������� �����

��������������������������

������� �� �������������� �� �������� �������

���� ��������������������������

�� �������� ������� ������� ������� ������ �����

�� ���� ����������� � �����!��"���#����$�

�� %����� � �!� ��!� ����#��� &�''��(��

�� ������ ����� '� ����� �& ��#����$�

�����

��� �� �������� ��� ������ � � ������ ���������������������� ����������������� ����� � ���

�� ���� �� �� !"�����#����� ������$��� �� ���������%��$ ���$�� �� ���

&�

��� �� '����� �������������� ���� � ������� �� ���

�� ���� ������ �����% ������������������������$�( ���

��� �� �� ������� ����% ����$� ����� �) �� ��#� ��������% ����������� ����������� ���$����� �% ��������%�������������$�� ��� ��������� ����$�$�� ����� �% ���������$�� ������ ����$������ ��* ���+� ���������� � �$����� ����� ����$���� ���� ����$�� ���������� �$����� ����% ����� %��$ �

��� �� !�� ��� ����������$���� �,��,������������ �- ���� $� ��� �����

!$���� �./�$���� �0$�� �)�$���� �0�� )����$�)�����

�����./����0$�� �)����0�� )�����)� ����)�����

!���� ��./�$���� �0$�� �)����0$�� �)1$������

���� !"�1$ �������������� 1$�� � ��/��2�(

������

���������

CEGP0

1309

1

49.2

48.2

16.2

38 0

4/05

/201

8 14

:00:

22

CEGP0

1309

1

49.2

48.2

16.2

38 0

4/05

/201

8 14

:00:

22

CEGP0

1309

1

49.2

48.2

16.2

38 0

4/05

/201

8 14

:00:

22

���������� �

�� 3�� ����� � ��������� /�$���� �0$�� �) �$���� �0�� )����0$�� �)����0�� )1$������������� ��%��1$������ �����456�

��� �����$���� �0$�� �)�$���� �0�� )����0$�� �)����0�� ������� �$���� �������� ����� ������������ 1$����������� ������ �% ��� 1$������

���� 3������ ��� 1$�����������0$�� �789:2;�������7<���=;��� ����� ����� � ��� �� �$���� �0$�� � ��� � ��� �7>?>@8�;

�� ������A=3��@�=3�8��� ������ ������ � � �� ���

�&�

��� �� '����� ������% �������$��$� ��'������ !��� �� ���

�� �������� ���������� ��)$���� B� � � ��������% ����� ������������ CD��������*������$� ���� ��% �� � ������ �C���

�� �� �������� ��� �����������! �����*��������' ��� �� �� ������������ �$� ���������� �����*��� �����E$�������$���� �� ���

+�

+�

� ��/8����� /8�

� ��/8����� /8�

� ��/@����� /@�

� ��/@����� /@�

�� ������ �� +������ ���#�������� ��� ���$�� �� �������8��� �����������% �����(������������� ���#����������������$�������� ���#��������� ���

&�

CEGP0

1309

1

49.2

48.2

16.2

38 0

4/05

/201

8 14

:00:

22

CEGP0

1309

1

49.2

48.2

16.2

38 0

4/05

/201

8 14

:00:

22

CEGP0

1309

1

49.2

48.2

16.2

38 0

4/05

/201

8 14

:00:

22

���������� �

�� �� !��� �� ����� ���� � �� 8��'���� ��� ��'$��� � �$��������������)�������������� �����$��� % ������� �)$����������������������������������������� � 1$ � ������� �����$���������������������������������� ������� �����������$��� ���

�� +� �$� ���������� ���� ����$� �� $� �� ��% ��> �������������� �������,@�� �� ��% ��� ����� ���

��� �� �������� �������������������$ �!� �$���!��� $�������� �'������ ��8��� ���������� ����������#������ ����� ������� ��� ���������������������� �$������� $�� ���

�� ������'���� ����������'���3���� ������'������$� �'���!����� � ���

&�

��� �� ' ����� +������ ������/2���������������������2����������� ���������� � �������%����$���� �������$� �� ���

�� ������ �� ���� � ������� �'������ 8����� ��$� �C������������ ����%���� ��������%���� �� ���

� � �� �������� ���� � � !"�F�=�!"�� ����� ������� ���������� =�!"�'������ ��� �� ����� �������� D'3!��>��� �$� �D8'&&�� ���

&������� �������� ��� ����=�!"�'������ ������ �����%���� ��% �

�'@>!� ����� !��� ��������( ���

�� �8�+� �� ���� @8!����� ��� �

�� 8���* �� $� ��=�!"�������� � � �$�� � ������ ����#�� %���� ����� ����� ���=�!"�������� �������� ����#�� %���� ��% ��'@>!� ���

���

CEGP0

1309

1

49.2

48.2

16.2

38 0

4/05

/201

8 14

:00:

22

CEGP0

1309

1

49.2

48.2

16.2

38 0

4/05

/201

8 14

:00:

22

CEGP0

1309

1

49.2

48.2

16.2

38 0

4/05

/201

8 14

:00:

22

Q1) a) Consider a database used to record the marks that students get in differentexams of different course offerings.

Construct an E-R diagram that models exams as entities, and uses aternary relationship, for the above database. [5]

b) For the database system to be usable, it must retrieve data efficiently.The need of efficiency has led designers to use complex data structuresto represent data in the database. Developers hides this complexity fromthe database system users through several levels of abstraction. Explainthose levels of abstraction in detail. [5]

OR

Q2) a) Construct an alternative E-R diagram for above requirements given inQ.1(a) that uses only a binary relationship between students and course-offerings. Make sure that only one relationship exists between a particularstudent and course-offering pair, yet you can represent the marks that astudent gets in different exams of a course offering. [5]

b) Write PL/SQL trigger for following requirement : [5]

Event: Deletion of row from stud(roll_no, name, class) table.

Action: after deletion of values from stud table, values should be insertedinto cancel_admission( roll_no, name) table.

Note: for every row to be deleted, action should be performed.

Total No. of Questions : 10]

[Total No. of Pages : 4

[5253]-538T.E. (Computer Engineering)

DATABASE MANAGEMENT SYSTEM(2015 Pattern) (End Sem.)

Time : 2½ Hours] [Max. Marks : 70Instructions to the candidates:

1) Answer Q.1 or Q.2, Q.3 or Q.4, Q.5 or Q.6, Q.7 or Q.8, Q.9 or Q.10.

2) Neat diagrams must be drawn wherever necessary.3) Figures to the right indicate full marks.

4) Assume suitable data, if necessary.

P2510

SEAT No. :

P.T.O.

CEGP0

1309

1

49.2

48.2

16.2

38 2

9/11

/201

7 09

:54:

33

CEGP0

1309

1

49.2

48.2

16.2

38 2

9/11

/201

7 09

:54:

33

CEGP0

1309

1

49.2

48.2

16.2

38 2

9/11

/201

7 09

:54:

33

[5253]-538 2

Q3) a) Consider insurance database with following schema : [5]

person(driver-id, name, address)

car(license, model, year)

accident (report - no, date, location)

owns(driver-id,license)

participated(driver-id,car,report-no,damage-amount)

Write a query in SQL for following requirements (any 2) :

i) Find the total no. of people who owned cars that were involved inaccidents in 2016.

ii) Retrieve the name of person whose address contains Pune.

iii) Find the name of persons having more than two cars.

b) Any database system to be good relational database system, codds haveproposed 12 rules, explain any 2 rules proposed by codd with example.[5]

OR

Q4) a) What is normalization? What s the need of normalized database? [5]

b) The organization has decided to increase the salary of employees by10% of existing salary, whose existing salary is less than Rs. 10000/-Write a PL/SQ block to update the salary as per above requirement,display an appropriate message based on the no. of rows affected bythis update (using implicit cursor status variables). [5]

Q5) a) Consider the Transaction (T3), Transaction (T4) and Transaction (T6)are any hypothetical transactions working on data item Q. Scheduleexplaining the execution of T3, T4 and T6 are given below. Decide whetherfollowing schedule is conflict serializable or not? Justify your answer.[9]

T3 T4 T6

read (Q) Write (Q)

Write (Q)Write (Q)

CEGP0

1309

1

49.2

48.2

16.2

38 2

9/11

/201

7 09

:54:

33

CEGP0

1309

1

49.2

48.2

16.2

38 2

9/11

/201

7 09

:54:

33

CEGP0

1309

1

49.2

48.2

16.2

38 2

9/11

/201

7 09

:54:

33

[5253]-538 3

b) Transaction during its execution should be in one of the different states atany point of time, explain the different states of transactions during its execution.

[8]

OR

Q6) a) Suppose a transaction Ti issues a read command on data item Q. Howtime-stamp based protocol decides whether to allow the operation to beexecuted or not using time-stamp based protocol of concurrency control.

[9]

b) A transaction may be waiting for more time for an Exclusive (X)lock onan item, while a sequence of other transactions request and are grantedas Shared (S) lock on the same item. What is this problem? How it issolved by two phase lock protocol? [8]

Q7) a) Explain speed-up and scale-up parameters of parallel systems. What arethe different factors limiting the speed-up and scae-up parameters. [8]

b) In both, Shared nothing parallel architecture and distributed systemarchitecture resources are not shared, then how shared nothing parallelsystems are different than distributed systems? Also explain in brief otherparallel system architecture. [9]

OR

Q8) a) How two phase commit protocol to ensure the atomicity in distributedtransaction, handles the following failures: [8]

i) Failure of participating site

ii) Failure of coordinator

iii) Failure due to network partition

b) For concurrency control in distributed transaction distributed lock managerapproach is used, explain in detail different approaches for dealing withreplication of data items in distributed lock manager approach. [9]

CEGP0

1309

1

49.2

48.2

16.2

38 2

9/11

/201

7 09

:54:

33

CEGP0

1309

1

49.2

48.2

16.2

38 2

9/11

/201

7 09

:54:

33

CEGP0

1309

1

49.2

48.2

16.2

38 2

9/11

/201

7 09

:54:

33

[5253]-538 4

Q9) a) BASE Transactions ensures the properties like Basically Available, SoftState, Eventual Consistency. What is soft state of any system, how it isdepend on Eventual consistency property? [8]

b) List the different NOSQL data Models. Explain document store NOSQLdata model with example. [8]

OR

Q10)a) Explain how NOSQL databases are different than relational databases?[8]

b) Write short note on Hadoop: HDFS, MapReduce. [8]CEG

P013

091

49.2

48.2

16.2

38 2

9/11

/201

7 09

:54:

33

CEGP0

1309

1

49.2

48.2

16.2

38 2

9/11

/201

7 09

:54:

33

CEGP0

1309

1

49.2

48.2

16.2

38 2

9/11

/201

7 09

:54:

33

������������� �����������

��������������� �����

��������� ���� ��������� ������������� �����������

���������������������� �������������

����������� ������������������������������������������������

�� �������� ������� ������� ����

�� ���� ����������� �� ����������������� �

�� !����� � ��� ���� �������� "�##��$��

�� ������ ������#� ����� �" ������� �

�����

��� ������������ �������������������������������������������� ��������� ���

� �������������� ��������������������������������������������

� ����������� ���������� ������������������������������������������������������ �������������

� ���������������� �������!���������������� �������

� ����������������� ������������������������������������������������"

#������������������������������������������ �����������������������������������������������������������������������������"

�� $������� ���%!&� ��� ��� ��� ���� � ����� ������"�'�������� �����������������������(������������������ ���������"

��� $������� ���������� ������ ���%!&� ��� ������ ��������� ��������������"

)&��� �� �����(������������������������������������� ������������������� ���

�����������������������(���������������������������� ����������"�)�������������������������������������������������������������� ����������" ���

���������

����

CEGP0

1309

1

49.2

48.2

16.2

38 0

9/08

/201

7 11

:21:

59 S

ERV

ER36CEG

P013

091

49.2

48.2

16.2

38 0

9/08

/201

7 11

:21:

59 S

ERV

ER36

CEGP0

1309

1

49.2

48.2

16.2

38 0

9/08

/201

7 11

:21:

59 S

ERV

ER36

���� ��� ����

�� %*������������*��������������������������������������"������*�����������������" ���

�� �� $������������������ ��������������� ���

+���������� ,�����������,����������

+��������,���������������

������,������ ,�������,��,����������

-���� ./������������������ ����������������0�

�� #����������������������������������������������������������123����0415"

��� 6��������������������������������������������"���������������������

���� 6�������������������������������������������������"

�� -����������������%�������� ./����� ��������������������" ���

)&

��� �� -����������*�����������������������7�8���������������� %/%$9����������������������*������������������7 ���

�� -����+1: ./�����(��������������������������������"����������������������������������������������������������(���������,�����&���,�������������"���������������&��������������������������������" ���

��� �� %*�������������������;�����7�%*������������*������������������9����<�����#��" ���

���

CEGP0

1309

1

49.2

48.2

16.2

38 0

9/08

/201

7 11

:21:

59 S

ERV

ER36CEG

P013

091

49.2

48.2

16.2

38 0

9/08

/201

7 11

:21:

59 S

ERV

ER36

CEGP0

1309

1

49.2

48.2

16.2

38 0

9/08

/201

7 11

:21:

59 S

ERV

ER36

���� ��� ����

�� %*������������*����������������������������������� ���������������" "#��� ��(������ ./�"������������������������������������������ �������������� ����� �������������=�����>���������������������������������" ���

)&

� � �� %*������������������������� ������������������������� �" ���

�� )��� ��� ���� ���� ��� ���� ��� ������ ��� ���� ���������� ����������� ����������������� ������������������������������������������ ���������������������������������������������������������������������� �������������������"�3����������� ����������������������������������������� ����������" ���

���

���

CEGP0

1309

1

49.2

48.2

16.2

38 0

9/08

/201

7 11

:21:

59 S

ERV

ER36CEG

P013

091

49.2

48.2

16.2

38 0

9/08

/201

7 11

:21:

59 S

ERV

ER36

CEGP0

1309

1

49.2

48.2

16.2

38 0

9/08

/201

7 11

:21:

59 S

ERV

ER36