From c2e722b3bef860cd81208eadf11e1411137913cd Mon Sep 17 00:00:00 2001
From: zengwh <81383286@qq.com>
Date: Wed, 27 May 2020 10:48:28 +0800
Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E6=AC=A1=E6=8F=90=E4=BA=A4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.gitignore | 4 +
pom.xml | 545 +
.../java/com/emr/annotation/DataSource.java | 12 +
.../com/emr/annotation/DataSourceAspect.java | 36 +
.../com/emr/annotation/DynamicDataSource.java | 14 +
.../controller/ArchiveFlowInfoController.java | 103 +
.../com/emr/controller/ContantController.java | 33 +
.../emr/controller/DictionaryController.java | 125 +
.../com/emr/controller/FontController.java | 296 +
.../com/emr/controller/FormTokenFlagUtil.java | 31 +
.../controller/GlobalExceptionHandler.java | 59 +
.../emr/controller/HolidaySetController.java | 45 +
.../controller/JAXDynamicClientFactory.java | 55 +
.../com/emr/controller/LoginController.java | 72 +
.../controller/MedicalRecallController.java | 90 +
.../emr/controller/StatisticsController.java | 310 +
.../emr/controller/UploadFilesController.java | 118 +
.../com/emr/controller/UrlInterceptor.java | 57 +
.../com/emr/controller/VCountController.java | 248 +
.../controller/beHospitaledController.java | 279 +
.../com/emr/controller/faultController.java | 64 +
.../emr/controller/faultTypeController.java | 66 +
.../emr/controller/inHospitalController.java | 898 +
.../emr/controller/lastVerifyController.java | 159 +
.../medicalRecallDateController.java | 83 +
.../controller/unfileMedicalController.java | 66 +
.../emr/dao/ArchiveCallbackInfoMapper.java | 20 +
.../com/emr/dao/ArchiveFlowInfoMapper.java | 26 +
.../com/emr/dao/ArchiveFlowRoleMapper.java | 21 +
.../com/emr/dao/Archive_DetailMapper.java | 37 +
.../com/emr/dao/Archive_MasterMapper.java | 42 +
.../java/com/emr/dao/EmrHolidaySetMapper.java | 34 +
.../com/emr/dao/EmrOvertimeSetMapper.java | 17 +
.../java/com/emr/dao/EmrPatientMapper.java | 7 +
.../com/emr/dao/Emr_Archive_DetailMapper.java | 17 +
.../com/emr/dao/Emr_DictionaryMapper.java | 42 +
.../com/emr/dao/Emr_Fault_DetailMapper.java | 24 +
.../com/emr/dao/Emr_Fault_TypeMapper.java | 22 +
src/main/java/com/emr/dao/Emr_LogMapper.java | 22 +
.../java/com/emr/dao/Emr_PictureMapper.java | 21 +
.../java/com/emr/dao/StatisticsMapper.java | 18 +
.../java/com/emr/dao/TPrintinfoMapper.java | 16 +
src/main/java/com/emr/dao/TUuInfoMapper.java | 18 +
src/main/java/com/emr/dao/TUuPrintMapper.java | 18 +
src/main/java/com/emr/dao/V_CountMapper.java | 19 +
.../java/com/emr/dao/Zd_AssortMapper.java | 13 +
.../com/emr/entity/ArchiveCallbackInfo.java | 78 +
.../java/com/emr/entity/ArchiveFlowInfo.java | 172 +
.../java/com/emr/entity/ArchiveFlowRole.java | 94 +
.../java/com/emr/entity/Archive_Detail.java | 103 +
.../com/emr/entity/Archive_Detail_Vo.java | 30 +
.../java/com/emr/entity/Archive_Master.java | 233 +
.../com/emr/entity/Archive_Master_Vo.java | 44 +
.../java/com/emr/entity/AssortTypeTree.java | 28 +
.../java/com/emr/entity/EmrHolidaySet.java | 61 +
.../java/com/emr/entity/EmrHolidaySetVo.java | 53 +
.../java/com/emr/entity/EmrOvertimeSet.java | 39 +
src/main/java/com/emr/entity/EmrPatient.java | 49 +
.../com/emr/entity/Emr_Archive_Detail.java | 103 +
.../java/com/emr/entity/Emr_Dictionary.java | 183 +
.../java/com/emr/entity/Emr_Fault_Detail.java | 145 +
.../com/emr/entity/Emr_Fault_Detail_Vo.java | 63 +
.../java/com/emr/entity/Emr_Fault_Type.java | 113 +
.../java/com/emr/entity/Emr_Fault_Vo.java | 315 +
src/main/java/com/emr/entity/Emr_Log.java | 93 +
src/main/java/com/emr/entity/Emr_Log_Vo.java | 231 +
src/main/java/com/emr/entity/Emr_Picture.java | 153 +
src/main/java/com/emr/entity/File_Vo.java | 32 +
.../java/com/emr/entity/OffsetLimitPage.java | 47 +
src/main/java/com/emr/entity/Power_User.java | 195 +
src/main/java/com/emr/entity/ReturnAsmx.java | 30 +
src/main/java/com/emr/entity/TPrintinfo.java | 39 +
src/main/java/com/emr/entity/TUuInfo.java | 153 +
src/main/java/com/emr/entity/TUuPrint.java | 135 +
.../java/com/emr/entity/Upload_File_Vo.java | 33 +
src/main/java/com/emr/entity/V_Count.java | 142 +
src/main/java/com/emr/entity/Zd_Assort.java | 43 +
.../emr/service/Archive_DetailService.java | 87 +
.../emr/service/Archive_MasterService.java | 127 +
.../service/Emr_Archive_DetailService.java | 13 +
.../emr/service/Emr_DictionaryService.java | 47 +
.../emr/service/Emr_Fault_DetailService.java | 54 +
.../emr/service/Emr_Fault_TypeService.java | 53 +
.../com/emr/service/Emr_PictureService.java | 51 +
.../java/com/emr/service/V_CountService.java | 33 +
src/main/java/com/emr/service/WebService.java | 7 +
.../ipml/ArchiveCallbackInfoService.java | 152 +
.../service/ipml/ArchiveFlowInfoService.java | 289 +
.../ipml/Archive_DetailServiceImpl.java | 132 +
.../ipml/Archive_MasterServiceImpl.java | 775 +
.../ipml/Emr_Archive_DetailServiceImpl.java | 21 +
.../ipml/Emr_DictionaryServiceImpl.java | 49 +
.../ipml/Emr_Fault_DetailServiceImpl.java | 142 +
.../ipml/Emr_Fault_TypeServiceImpl.java | 49 +
.../service/ipml/Emr_PictureServiceImpl.java | 51 +
.../java/com/emr/service/ipml/EnumVerify.java | 480 +
.../emr/service/ipml/HolidaySetService.java | 135 +
.../emr/service/ipml/StatisticsService.java | 214 +
.../emr/service/ipml/TPrintinfoService.java | 27 +
.../emr/service/ipml/V_CountServiceImpl.java | 40 +
.../com/emr/service/ipml/ZdAssortService.java | 31 +
src/main/java/com/emr/shiro/MyRealm.java | 80 +
src/main/java/com/emr/util/AccountDate.java | 162 +
.../java/com/emr/util/ActionScopeUtils.java | 42 +
.../java/com/emr/util/ExportExcelUtil.java | 187 +
.../java/com/emr/util/ExportExcelUtil1.java | 183 +
.../java/com/emr/util/HttpClientUtils.java | 282 +
src/main/java/com/emr/util/Jpg2PdfUtil.java | 298 +
src/main/java/com/emr/util/Msg.java | 75 +
src/main/java/com/emr/util/OracleConnect.java | 109 +
src/main/java/com/emr/util/PDFUtils.java | 126 +
src/main/java/com/emr/util/PageBean.java | 141 +
.../java/com/emr/util/PrintToPdfUtil.java | 337 +
src/main/java/com/emr/util/ReadFile.java | 65 +
src/main/java/com/emr/util/UrlUtil.java | 88 +
src/main/java/com/emr/util/test.java | 111 +
.../com/emr/vo/ArchiveCallbackInfoVo.java | 37 +
.../java/com/emr/vo/ArchiveFlowInfoVo.java | 94 +
src/main/java/com/emr/vo/DeptStatistics.java | 77 +
.../java/com/emr/vo/DoctorStatistics.java | 75 +
.../com/emr/vo/FinalAndFirstStatistics.java | 55 +
src/main/java/com/emr/vo/TUuInfoVo.java | 27 +
src/main/java/com/emr/vo/TUuPrintSearch.java | 27 +
src/main/java/com/emr/vo/TUuPrintVo.java | 47 +
src/main/java/com/emr/vo/User.java | 76 +
src/main/java/com/emr/vo/V_CountVo.java | 21 +
src/main/resources/activiti/leave.bpmn20.xml | 27 +
src/main/resources/config/activiti.cfg.xml | 24 +
.../config/applicationContext-shiro.xml | 65 +
.../resources/config/applicationContext.xml | 163 +
src/main/resources/config/config.properties | 14 +
.../resources/config/gennerator.properties | 20 +
src/main/resources/config/jdbc.properties | 38 +
src/main/resources/config/mybatis-config.xml | 25 +
src/main/resources/config/spring-shiro.xml | 56 +
src/main/resources/config/webService.xml | 0
src/main/resources/generatorConfig.xml | 106 +
src/main/resources/log4j.properties | 18 +
.../mapper/ArchiveCallbackInfoMapper.xml | 111 +
.../mapper/ArchiveFlowInfoMapper.xml | 314 +
.../mapper/ArchiveFlowRoleMapper.xml | 121 +
.../resources/mapper/Archive_DetailMapper.xml | 320 +
.../resources/mapper/Archive_MasterMapper.xml | 922 +
.../resources/mapper/EmrHolidaySetMapper.xml | 152 +
.../resources/mapper/EmrOvertimeSetMapper.xml | 58 +
.../resources/mapper/EmrPatientMapper.xml | 9 +
.../mapper/Emr_Archive_DetailMapper.xml | 153 +
.../resources/mapper/Emr_DictionaryMapper.xml | 376 +
.../mapper/Emr_Fault_DetailMapper.xml | 408 +
.../resources/mapper/Emr_Fault_TypeMapper.xml | 200 +
src/main/resources/mapper/Emr_LogMapper.xml | 225 +
.../resources/mapper/Emr_PictureMapper.xml | 256 +
.../resources/mapper/StatisticsMapper.xml | 189 +
.../resources/mapper/TPrintinfoMapper.xml | 37 +
src/main/resources/mapper/TUuInfoMapper.xml | 201 +
src/main/resources/mapper/TUuPrintMapper.xml | 196 +
src/main/resources/mapper/V_CountMapper.xml | 206 +
src/main/resources/mapper/Zd_AssortMapper.xml | 27 +
.../WEB-INF/dispatcherServlet-servlet.xml | 55 +
.../webapp/WEB-INF/jspf/boostrapSelect.jspf | 5 +
src/main/webapp/WEB-INF/jspf/comm.jspf | 109 +
src/main/webapp/WEB-INF/jspf/confirmJsp.jspf | 45 +
src/main/webapp/WEB-INF/jspf/ztreeCommom.jsp | 30 +
src/main/webapp/WEB-INF/lib/ojdbc14.jar | Bin 0 -> 1536554 bytes
.../lib/power-foundaton-1.0-SNAPSHOT.jar | Bin 0 -> 29228 bytes
src/main/webapp/WEB-INF/lib/sqljdbc4-2.0.jar | Bin 0 -> 466359 bytes
.../views/beHospitaledDir/beHospList.jsp | 631 +
.../views/beHospitaledDir/timeLine.jsp | 298 +
.../views/dictionaryDir/dictionary.jsp | 1012 +
.../WEB-INF/views/faultDir/faultList.jsp | 428 +
.../views/faultTypeDir/faultTypeList.jsp | 449 +
.../WEB-INF/views/flowInfo/flowInfoList.jsp | 116 +
src/main/webapp/WEB-INF/views/font/error.jsp | 75 +
.../webapp/WEB-INF/views/font/showRecord.jsp | 174 +
.../WEB-INF/views/font/showRecordIframe.jsp | 72 +
.../views/holidaySetDir/holidaySetList.jsp | 130 +
.../views/inHospitalDir/inHositalList.jsp | 794 +
src/main/webapp/WEB-INF/views/index.html | 2186 +
src/main/webapp/WEB-INF/views/index.jsp | 369 +
.../views/lastVerifyDir/lastVerifyList.jsp | 620 +
.../medicalRecallDateDir/recallDateList.jsp | 378 +
.../medicalRecallDir/medicalRecallList.jsp | 217 +
src/main/webapp/WEB-INF/views/pdf.jsp | 42 +
.../views/statistics/finalStatistics.jsp | 90 +
.../statistics/finalStatisticsDetail.jsp | 112 +
.../views/statistics/firstStatistics.jsp | 73 +
.../WEB-INF/views/statistics/printCount.jsp | 74 +
.../WEB-INF/views/statistics/printInfo.jsp | 74 +
.../WEB-INF/views/statistics/scanCount.jsp | 74 +
.../WEB-INF/views/statistics/scanInfo.jsp | 74 +
.../views/statistics/statisticsDetail.jsp | 112 +
.../unfileMedicalDir/unfileMedicalList.jsp | 966 +
.../views/vCountDir/doctorFileList.jsp | 86 +
.../views/vCountDir/doctorFileListIframe.jsp | 124 +
.../WEB-INF/views/vCountDir/vCountList.jsp | 945 +
src/main/webapp/WEB-INF/web.xml | 87 +
src/main/webapp/error.jsp | 56 +
src/main/webapp/favicon.ico | Bin 0 -> 90022 bytes
src/main/webapp/index.jsp | 5 +
src/main/webapp/login.jsp | 23 +
.../bower_components/Ionicons/.bower.json | 40 +
.../bower_components/Ionicons/LICENSE | 21 +
.../bower_components/Ionicons/bower.json | 31 +
.../bower_components/Ionicons/cheatsheet.html | 28009 +++++++++++
.../bower_components/Ionicons/component.json | 19 +
.../bower_components/Ionicons/composer.json | 36 +
.../Ionicons/css/ionicons.css | 1480 +
.../Ionicons/css/ionicons.min.css | 11 +
.../Ionicons/fonts/ionicons.eot | Bin 0 -> 120724 bytes
.../Ionicons/fonts/ionicons.svg | 2230 +
.../Ionicons/fonts/ionicons.ttf | Bin 0 -> 188508 bytes
.../Ionicons/fonts/ionicons.woff | Bin 0 -> 67904 bytes
.../Ionicons/less/_ionicons-font.less | 27 +
.../Ionicons/less/_ionicons-icons.less | 1473 +
.../Ionicons/less/_ionicons-variables.less | 747 +
.../Ionicons/less/ionicons.less | 3 +
.../Ionicons/png/512/alert-circled.png | Bin 0 -> 2551 bytes
.../Ionicons/png/512/alert.png | Bin 0 -> 766 bytes
.../Ionicons/png/512/android-add-contact.png | Bin 0 -> 3279 bytes
.../Ionicons/png/512/android-add.png | Bin 0 -> 240 bytes
.../Ionicons/png/512/android-alarm.png | Bin 0 -> 6428 bytes
.../Ionicons/png/512/android-archive.png | Bin 0 -> 1628 bytes
.../Ionicons/png/512/android-arrow-back.png | Bin 0 -> 1218 bytes
.../png/512/android-arrow-down-left.png | Bin 0 -> 1451 bytes
.../png/512/android-arrow-down-right.png | Bin 0 -> 1462 bytes
.../png/512/android-arrow-forward.png | Bin 0 -> 1191 bytes
.../png/512/android-arrow-up-left.png | Bin 0 -> 1499 bytes
.../png/512/android-arrow-up-right.png | Bin 0 -> 1482 bytes
.../Ionicons/png/512/android-battery.png | Bin 0 -> 238 bytes
.../Ionicons/png/512/android-book.png | Bin 0 -> 3746 bytes
.../Ionicons/png/512/android-calendar.png | Bin 0 -> 849 bytes
.../Ionicons/png/512/android-call.png | Bin 0 -> 4766 bytes
.../Ionicons/png/512/android-camera.png | Bin 0 -> 3871 bytes
.../Ionicons/png/512/android-chat.png | Bin 0 -> 3577 bytes
.../Ionicons/png/512/android-checkmark.png | Bin 0 -> 1846 bytes
.../Ionicons/png/512/android-clock.png | Bin 0 -> 5268 bytes
.../Ionicons/png/512/android-close.png | Bin 0 -> 2156 bytes
.../Ionicons/png/512/android-contact.png | Bin 0 -> 3658 bytes
.../Ionicons/png/512/android-contacts.png | Bin 0 -> 4299 bytes
.../Ionicons/png/512/android-data.png | Bin 0 -> 4808 bytes
.../Ionicons/png/512/android-developer.png | Bin 0 -> 4115 bytes
.../Ionicons/png/512/android-display.png | Bin 0 -> 4909 bytes
.../Ionicons/png/512/android-download.png | Bin 0 -> 4890 bytes
.../Ionicons/png/512/android-drawer.png | Bin 0 -> 190 bytes
.../Ionicons/png/512/android-dropdown.png | Bin 0 -> 777 bytes
.../Ionicons/png/512/android-earth.png | Bin 0 -> 6517 bytes
.../Ionicons/png/512/android-folder.png | Bin 0 -> 1688 bytes
.../Ionicons/png/512/android-forums.png | Bin 0 -> 1739 bytes
.../Ionicons/png/512/android-friends.png | Bin 0 -> 4868 bytes
.../Ionicons/png/512/android-hand.png | Bin 0 -> 4650 bytes
.../Ionicons/png/512/android-image.png | Bin 0 -> 1433 bytes
.../Ionicons/png/512/android-inbox.png | Bin 0 -> 3018 bytes
.../Ionicons/png/512/android-information.png | Bin 0 -> 3370 bytes
.../Ionicons/png/512/android-keypad.png | Bin 0 -> 1055 bytes
.../Ionicons/png/512/android-lightbulb.png | Bin 0 -> 3515 bytes
.../Ionicons/png/512/android-locate.png | Bin 0 -> 5003 bytes
.../Ionicons/png/512/android-location.png | Bin 0 -> 3067 bytes
.../Ionicons/png/512/android-mail.png | Bin 0 -> 3455 bytes
.../Ionicons/png/512/android-microphone.png | Bin 0 -> 3267 bytes
.../Ionicons/png/512/android-mixer.png | Bin 0 -> 2727 bytes
.../Ionicons/png/512/android-more.png | Bin 0 -> 224 bytes
.../Ionicons/png/512/android-note.png | Bin 0 -> 249 bytes
.../Ionicons/png/512/android-playstore.png | Bin 0 -> 3165 bytes
.../Ionicons/png/512/android-printer.png | Bin 0 -> 1721 bytes
.../Ionicons/png/512/android-promotion.png | Bin 0 -> 2374 bytes
.../Ionicons/png/512/android-reminder.png | Bin 0 -> 2890 bytes
.../Ionicons/png/512/android-remove.png | Bin 0 -> 160 bytes
.../Ionicons/png/512/android-search.png | Bin 0 -> 4232 bytes
.../Ionicons/png/512/android-send.png | Bin 0 -> 2079 bytes
.../Ionicons/png/512/android-settings.png | Bin 0 -> 3883 bytes
.../Ionicons/png/512/android-share.png | Bin 0 -> 3212 bytes
.../Ionicons/png/512/android-social-user.png | Bin 0 -> 3644 bytes
.../Ionicons/png/512/android-social.png | Bin 0 -> 3849 bytes
.../Ionicons/png/512/android-sort.png | Bin 0 -> 197 bytes
.../Ionicons/png/512/android-stair-drawer.png | Bin 0 -> 209 bytes
.../Ionicons/png/512/android-star.png | Bin 0 -> 2926 bytes
.../Ionicons/png/512/android-stopwatch.png | Bin 0 -> 5225 bytes
.../Ionicons/png/512/android-storage.png | Bin 0 -> 233 bytes
.../Ionicons/png/512/android-system-back.png | Bin 0 -> 1796 bytes
.../Ionicons/png/512/android-system-home.png | Bin 0 -> 1107 bytes
.../png/512/android-system-windows.png | Bin 0 -> 202 bytes
.../Ionicons/png/512/android-timer.png | Bin 0 -> 3904 bytes
.../Ionicons/png/512/android-trash.png | Bin 0 -> 2865 bytes
.../Ionicons/png/512/android-user-menu.png | Bin 0 -> 3568 bytes
.../Ionicons/png/512/android-volume.png | Bin 0 -> 6022 bytes
.../Ionicons/png/512/android-wifi.png | Bin 0 -> 4868 bytes
.../Ionicons/png/512/aperture.png | Bin 0 -> 9500 bytes
.../Ionicons/png/512/archive.png | Bin 0 -> 2445 bytes
.../Ionicons/png/512/arrow-down-a.png | Bin 0 -> 1173 bytes
.../Ionicons/png/512/arrow-down-b.png | Bin 0 -> 1307 bytes
.../Ionicons/png/512/arrow-down-c.png | Bin 0 -> 1966 bytes
.../Ionicons/png/512/arrow-expand.png | Bin 0 -> 2498 bytes
.../png/512/arrow-graph-down-left.png | Bin 0 -> 2478 bytes
.../png/512/arrow-graph-down-right.png | Bin 0 -> 2545 bytes
.../Ionicons/png/512/arrow-graph-up-left.png | Bin 0 -> 2440 bytes
.../Ionicons/png/512/arrow-graph-up-right.png | Bin 0 -> 2440 bytes
.../Ionicons/png/512/arrow-left-a.png | Bin 0 -> 1260 bytes
.../Ionicons/png/512/arrow-left-b.png | Bin 0 -> 1608 bytes
.../Ionicons/png/512/arrow-left-c.png | Bin 0 -> 1662 bytes
.../Ionicons/png/512/arrow-move.png | Bin 0 -> 1948 bytes
.../Ionicons/png/512/arrow-resize.png | Bin 0 -> 1266 bytes
.../Ionicons/png/512/arrow-return-left.png | Bin 0 -> 1082 bytes
.../Ionicons/png/512/arrow-return-right.png | Bin 0 -> 1124 bytes
.../Ionicons/png/512/arrow-right-a.png | Bin 0 -> 1317 bytes
.../Ionicons/png/512/arrow-right-b.png | Bin 0 -> 1671 bytes
.../Ionicons/png/512/arrow-right-c.png | Bin 0 -> 1657 bytes
.../Ionicons/png/512/arrow-shrink.png | Bin 0 -> 2594 bytes
.../Ionicons/png/512/arrow-swap.png | Bin 0 -> 1521 bytes
.../Ionicons/png/512/arrow-up-a.png | Bin 0 -> 1115 bytes
.../Ionicons/png/512/arrow-up-b.png | Bin 0 -> 1343 bytes
.../Ionicons/png/512/arrow-up-c.png | Bin 0 -> 2002 bytes
.../Ionicons/png/512/asterisk.png | Bin 0 -> 4023 bytes
.../bower_components/Ionicons/png/512/at.png | Bin 0 -> 5852 bytes
.../bower_components/Ionicons/png/512/bag.png | Bin 0 -> 3665 bytes
.../Ionicons/png/512/battery-charging.png | Bin 0 -> 1897 bytes
.../Ionicons/png/512/battery-empty.png | Bin 0 -> 1019 bytes
.../Ionicons/png/512/battery-full.png | Bin 0 -> 982 bytes
.../Ionicons/png/512/battery-half.png | Bin 0 -> 1320 bytes
.../Ionicons/png/512/battery-low.png | Bin 0 -> 1342 bytes
.../Ionicons/png/512/beaker.png | Bin 0 -> 3931 bytes
.../Ionicons/png/512/beer.png | Bin 0 -> 4559 bytes
.../Ionicons/png/512/bluetooth.png | Bin 0 -> 2909 bytes
.../Ionicons/png/512/bonfire.png | Bin 0 -> 4852 bytes
.../Ionicons/png/512/bookmark.png | Bin 0 -> 1102 bytes
.../Ionicons/png/512/briefcase.png | Bin 0 -> 1475 bytes
.../bower_components/Ionicons/png/512/bug.png | Bin 0 -> 4736 bytes
.../Ionicons/png/512/calculator.png | Bin 0 -> 1315 bytes
.../Ionicons/png/512/calendar.png | Bin 0 -> 2577 bytes
.../Ionicons/png/512/camera.png | Bin 0 -> 4190 bytes
.../Ionicons/png/512/card.png | Bin 0 -> 1494 bytes
.../Ionicons/png/512/cash.png | Bin 0 -> 3435 bytes
.../Ionicons/png/512/chatbox-working.png | Bin 0 -> 2301 bytes
.../Ionicons/png/512/chatbox.png | Bin 0 -> 1870 bytes
.../Ionicons/png/512/chatboxes.png | Bin 0 -> 2562 bytes
.../Ionicons/png/512/chatbubble-working.png | Bin 0 -> 3028 bytes
.../Ionicons/png/512/chatbubble.png | Bin 0 -> 2579 bytes
.../Ionicons/png/512/chatbubbles.png | Bin 0 -> 3751 bytes
.../Ionicons/png/512/checkmark-circled.png | Bin 0 -> 3687 bytes
.../Ionicons/png/512/checkmark-round.png | Bin 0 -> 2367 bytes
.../Ionicons/png/512/checkmark.png | Bin 0 -> 2134 bytes
.../Ionicons/png/512/chevron-down.png | Bin 0 -> 1689 bytes
.../Ionicons/png/512/chevron-left.png | Bin 0 -> 1769 bytes
.../Ionicons/png/512/chevron-right.png | Bin 0 -> 1831 bytes
.../Ionicons/png/512/chevron-up.png | Bin 0 -> 1677 bytes
.../Ionicons/png/512/clipboard.png | Bin 0 -> 2593 bytes
.../Ionicons/png/512/clock.png | Bin 0 -> 5866 bytes
.../Ionicons/png/512/close-circled.png | Bin 0 -> 3809 bytes
.../Ionicons/png/512/close-round.png | Bin 0 -> 2177 bytes
.../Ionicons/png/512/close.png | Bin 0 -> 2244 bytes
.../Ionicons/png/512/closed-captioning.png | Bin 0 -> 3665 bytes
.../Ionicons/png/512/cloud.png | Bin 0 -> 2067 bytes
.../Ionicons/png/512/code-download.png | Bin 0 -> 2423 bytes
.../Ionicons/png/512/code-working.png | Bin 0 -> 2433 bytes
.../Ionicons/png/512/code.png | Bin 0 -> 1720 bytes
.../Ionicons/png/512/coffee.png | Bin 0 -> 3205 bytes
.../Ionicons/png/512/compass.png | Bin 0 -> 7318 bytes
.../Ionicons/png/512/compose.png | Bin 0 -> 4296 bytes
.../Ionicons/png/512/connection-bars.png | Bin 0 -> 214 bytes
.../Ionicons/png/512/contrast.png | Bin 0 -> 4087 bytes
.../Ionicons/png/512/cube.png | Bin 0 -> 3265 bytes
.../Ionicons/png/512/disc.png | Bin 0 -> 4935 bytes
.../Ionicons/png/512/document-text.png | Bin 0 -> 1918 bytes
.../Ionicons/png/512/document.png | Bin 0 -> 1914 bytes
.../Ionicons/png/512/drag.png | Bin 0 -> 178 bytes
.../Ionicons/png/512/earth.png | Bin 0 -> 6476 bytes
.../Ionicons/png/512/edit.png | Bin 0 -> 2741 bytes
.../bower_components/Ionicons/png/512/egg.png | Bin 0 -> 4234 bytes
.../Ionicons/png/512/eject.png | Bin 0 -> 3209 bytes
.../Ionicons/png/512/email.png | Bin 0 -> 3125 bytes
.../Ionicons/png/512/eye-disabled.png | Bin 0 -> 3558 bytes
.../bower_components/Ionicons/png/512/eye.png | Bin 0 -> 3297 bytes
.../Ionicons/png/512/female.png | Bin 0 -> 2779 bytes
.../Ionicons/png/512/filing.png | Bin 0 -> 2349 bytes
.../Ionicons/png/512/film-marker.png | Bin 0 -> 2645 bytes
.../Ionicons/png/512/fireball.png | Bin 0 -> 3325 bytes
.../Ionicons/png/512/flag.png | Bin 0 -> 2337 bytes
.../Ionicons/png/512/flame.png | Bin 0 -> 3012 bytes
.../Ionicons/png/512/flash-off.png | Bin 0 -> 5437 bytes
.../Ionicons/png/512/flash.png | Bin 0 -> 1965 bytes
.../Ionicons/png/512/flask.png | Bin 0 -> 2939 bytes
.../Ionicons/png/512/folder.png | Bin 0 -> 1689 bytes
.../Ionicons/png/512/fork-repo.png | Bin 0 -> 3236 bytes
.../Ionicons/png/512/fork.png | Bin 0 -> 3007 bytes
.../Ionicons/png/512/forward.png | Bin 0 -> 2142 bytes
.../Ionicons/png/512/funnel.png | Bin 0 -> 3354 bytes
.../Ionicons/png/512/game-controller-a.png | Bin 0 -> 2548 bytes
.../Ionicons/png/512/game-controller-b.png | Bin 0 -> 3623 bytes
.../Ionicons/png/512/gear-a.png | Bin 0 -> 3806 bytes
.../Ionicons/png/512/gear-b.png | Bin 0 -> 2756 bytes
.../Ionicons/png/512/grid.png | Bin 0 -> 1066 bytes
.../Ionicons/png/512/hammer.png | Bin 0 -> 2493 bytes
.../Ionicons/png/512/happy.png | Bin 0 -> 5732 bytes
.../Ionicons/png/512/headphone.png | Bin 0 -> 4082 bytes
.../Ionicons/png/512/heart-broken.png | Bin 0 -> 4007 bytes
.../Ionicons/png/512/heart.png | Bin 0 -> 2322 bytes
.../Ionicons/png/512/help-buoy.png | Bin 0 -> 5824 bytes
.../Ionicons/png/512/help-circled.png | Bin 0 -> 3940 bytes
.../Ionicons/png/512/help.png | Bin 0 -> 2678 bytes
.../Ionicons/png/512/home.png | Bin 0 -> 1275 bytes
.../Ionicons/png/512/icecream.png | Bin 0 -> 2317 bytes
.../512/icon-social-google-plus-outline.png | Bin 0 -> 4071 bytes
.../png/512/icon-social-google-plus.png | Bin 0 -> 3888 bytes
.../Ionicons/png/512/image.png | Bin 0 -> 2952 bytes
.../Ionicons/png/512/images.png | Bin 0 -> 5073 bytes
.../Ionicons/png/512/information-circled.png | Bin 0 -> 3300 bytes
.../Ionicons/png/512/information.png | Bin 0 -> 2236 bytes
.../Ionicons/png/512/ionic.png | Bin 0 -> 5541 bytes
.../Ionicons/png/512/ios7-alarm-outline.png | Bin 0 -> 5769 bytes
.../Ionicons/png/512/ios7-alarm.png | Bin 0 -> 3922 bytes
.../Ionicons/png/512/ios7-albums-outline.png | Bin 0 -> 231 bytes
.../Ionicons/png/512/ios7-albums.png | Bin 0 -> 226 bytes
.../png/512/ios7-americanfootball-outline.png | Bin 0 -> 5767 bytes
.../png/512/ios7-americanfootball.png | Bin 0 -> 5675 bytes
.../png/512/ios7-analytics-outline.png | Bin 0 -> 5847 bytes
.../Ionicons/png/512/ios7-analytics.png | Bin 0 -> 4406 bytes
.../Ionicons/png/512/ios7-arrow-back.png | Bin 0 -> 881 bytes
.../Ionicons/png/512/ios7-arrow-down.png | Bin 0 -> 1451 bytes
.../Ionicons/png/512/ios7-arrow-forward.png | Bin 0 -> 898 bytes
.../Ionicons/png/512/ios7-arrow-left.png | Bin 0 -> 1550 bytes
.../Ionicons/png/512/ios7-arrow-right.png | Bin 0 -> 1537 bytes
.../Ionicons/png/512/ios7-arrow-thin-down.png | Bin 0 -> 1632 bytes
.../Ionicons/png/512/ios7-arrow-thin-left.png | Bin 0 -> 1258 bytes
.../png/512/ios7-arrow-thin-right.png | Bin 0 -> 1235 bytes
.../Ionicons/png/512/ios7-arrow-thin-up.png | Bin 0 -> 1647 bytes
.../Ionicons/png/512/ios7-arrow-up.png | Bin 0 -> 1482 bytes
.../Ionicons/png/512/ios7-at-outline.png | Bin 0 -> 4303 bytes
.../Ionicons/png/512/ios7-at.png | Bin 0 -> 4153 bytes
.../Ionicons/png/512/ios7-barcode-outline.png | Bin 0 -> 233 bytes
.../Ionicons/png/512/ios7-barcode.png | Bin 0 -> 219 bytes
.../png/512/ios7-baseball-outline.png | Bin 0 -> 6676 bytes
.../Ionicons/png/512/ios7-baseball.png | Bin 0 -> 5565 bytes
.../png/512/ios7-basketball-outline.png | Bin 0 -> 6200 bytes
.../Ionicons/png/512/ios7-basketball.png | Bin 0 -> 6525 bytes
.../Ionicons/png/512/ios7-bell-outline.png | Bin 0 -> 3615 bytes
.../Ionicons/png/512/ios7-bell.png | Bin 0 -> 2769 bytes
.../Ionicons/png/512/ios7-bolt-outline.png | Bin 0 -> 2384 bytes
.../Ionicons/png/512/ios7-bolt.png | Bin 0 -> 1892 bytes
.../png/512/ios7-bookmarks-outline.png | Bin 0 -> 2454 bytes
.../Ionicons/png/512/ios7-bookmarks.png | Bin 0 -> 2172 bytes
.../Ionicons/png/512/ios7-box-outline.png | Bin 0 -> 1602 bytes
.../Ionicons/png/512/ios7-box.png | Bin 0 -> 1032 bytes
.../png/512/ios7-briefcase-outline.png | Bin 0 -> 1359 bytes
.../Ionicons/png/512/ios7-briefcase.png | Bin 0 -> 1316 bytes
.../png/512/ios7-browsers-outline.png | Bin 0 -> 372 bytes
.../Ionicons/png/512/ios7-browsers.png | Bin 0 -> 357 bytes
.../png/512/ios7-calculator-outline.png | Bin 0 -> 1785 bytes
.../Ionicons/png/512/ios7-calculator.png | Bin 0 -> 1500 bytes
.../png/512/ios7-calendar-outline.png | Bin 0 -> 236 bytes
.../Ionicons/png/512/ios7-calendar.png | Bin 0 -> 230 bytes
.../Ionicons/png/512/ios7-camera-outline.png | Bin 0 -> 3582 bytes
.../Ionicons/png/512/ios7-camera.png | Bin 0 -> 3099 bytes
.../Ionicons/png/512/ios7-cart-outline.png | Bin 0 -> 2861 bytes
.../Ionicons/png/512/ios7-cart.png | Bin 0 -> 2200 bytes
.../png/512/ios7-chatboxes-outline.png | Bin 0 -> 901 bytes
.../Ionicons/png/512/ios7-chatboxes.png | Bin 0 -> 512 bytes
.../png/512/ios7-chatbubble-outline.png | Bin 0 -> 3640 bytes
.../Ionicons/png/512/ios7-chatbubble.png | Bin 0 -> 2259 bytes
.../Ionicons/png/512/ios7-checkmark-empty.png | Bin 0 -> 920 bytes
.../png/512/ios7-checkmark-outline.png | Bin 0 -> 4706 bytes
.../Ionicons/png/512/ios7-checkmark.png | Bin 0 -> 3080 bytes
.../Ionicons/png/512/ios7-circle-filled.png | Bin 0 -> 6478 bytes
.../Ionicons/png/512/ios7-circle-outline.png | Bin 0 -> 4120 bytes
.../Ionicons/png/512/ios7-clock-outline.png | Bin 0 -> 4320 bytes
.../Ionicons/png/512/ios7-clock.png | Bin 0 -> 2762 bytes
.../Ionicons/png/512/ios7-close-empty.png | Bin 0 -> 1204 bytes
.../Ionicons/png/512/ios7-close-outline.png | Bin 0 -> 4999 bytes
.../Ionicons/png/512/ios7-close.png | Bin 0 -> 3426 bytes
.../png/512/ios7-cloud-download-outline.png | Bin 0 -> 3953 bytes
.../Ionicons/png/512/ios7-cloud-download.png | Bin 0 -> 2782 bytes
.../Ionicons/png/512/ios7-cloud-outline.png | Bin 0 -> 3339 bytes
.../png/512/ios7-cloud-upload-outline.png | Bin 0 -> 3927 bytes
.../Ionicons/png/512/ios7-cloud-upload.png | Bin 0 -> 2815 bytes
.../Ionicons/png/512/ios7-cloud.png | Bin 0 -> 2082 bytes
.../png/512/ios7-cloudy-night-outline.png | Bin 0 -> 3814 bytes
.../Ionicons/png/512/ios7-cloudy-night.png | Bin 0 -> 2870 bytes
.../Ionicons/png/512/ios7-cloudy-outline.png | Bin 0 -> 2280 bytes
.../Ionicons/png/512/ios7-cloudy.png | Bin 0 -> 1572 bytes
.../Ionicons/png/512/ios7-cog-outline.png | Bin 0 -> 8008 bytes
.../Ionicons/png/512/ios7-cog.png | Bin 0 -> 6029 bytes
.../Ionicons/png/512/ios7-compose-outline.png | Bin 0 -> 1584 bytes
.../Ionicons/png/512/ios7-compose.png | Bin 0 -> 2061 bytes
.../Ionicons/png/512/ios7-contact-outline.png | Bin 0 -> 4846 bytes
.../Ionicons/png/512/ios7-contact.png | Bin 0 -> 4218 bytes
.../Ionicons/png/512/ios7-copy-outline.png | Bin 0 -> 927 bytes
.../Ionicons/png/512/ios7-copy.png | Bin 0 -> 782 bytes
.../png/512/ios7-download-outline.png | Bin 0 -> 1163 bytes
.../Ionicons/png/512/ios7-download.png | Bin 0 -> 1135 bytes
.../Ionicons/png/512/ios7-drag.png | Bin 0 -> 165 bytes
.../Ionicons/png/512/ios7-email-outline.png | Bin 0 -> 2592 bytes
.../Ionicons/png/512/ios7-email.png | Bin 0 -> 4167 bytes
.../Ionicons/png/512/ios7-expand.png | Bin 0 -> 485 bytes
.../Ionicons/png/512/ios7-eye-outline.png | Bin 0 -> 4381 bytes
.../Ionicons/png/512/ios7-eye.png | Bin 0 -> 2973 bytes
.../png/512/ios7-fastforward-outline.png | Bin 0 -> 2726 bytes
.../Ionicons/png/512/ios7-fastforward.png | Bin 0 -> 2158 bytes
.../Ionicons/png/512/ios7-filing-outline.png | Bin 0 -> 2041 bytes
.../Ionicons/png/512/ios7-filing.png | Bin 0 -> 1933 bytes
.../Ionicons/png/512/ios7-film-outline.png | Bin 0 -> 772 bytes
.../Ionicons/png/512/ios7-film.png | Bin 0 -> 722 bytes
.../Ionicons/png/512/ios7-flag-outline.png | Bin 0 -> 1928 bytes
.../Ionicons/png/512/ios7-flag.png | Bin 0 -> 1483 bytes
.../Ionicons/png/512/ios7-folder-outline.png | Bin 0 -> 1606 bytes
.../Ionicons/png/512/ios7-folder.png | Bin 0 -> 1640 bytes
.../png/512/ios7-football-outline.png | Bin 0 -> 6266 bytes
.../Ionicons/png/512/ios7-football.png | Bin 0 -> 5391 bytes
.../Ionicons/png/512/ios7-gear-outline.png | Bin 0 -> 5721 bytes
.../Ionicons/png/512/ios7-gear.png | Bin 0 -> 3445 bytes
.../Ionicons/png/512/ios7-glasses-outline.png | Bin 0 -> 3597 bytes
.../Ionicons/png/512/ios7-glasses.png | Bin 0 -> 2350 bytes
.../Ionicons/png/512/ios7-heart-outline.png | Bin 0 -> 3097 bytes
.../Ionicons/png/512/ios7-heart.png | Bin 0 -> 2078 bytes
.../Ionicons/png/512/ios7-help-empty.png | Bin 0 -> 1669 bytes
.../Ionicons/png/512/ios7-help-outline.png | Bin 0 -> 5608 bytes
.../Ionicons/png/512/ios7-help.png | Bin 0 -> 3587 bytes
.../Ionicons/png/512/ios7-home-outline.png | Bin 0 -> 1710 bytes
.../Ionicons/png/512/ios7-home.png | Bin 0 -> 1518 bytes
.../png/512/ios7-infinite-outline.png | Bin 0 -> 3028 bytes
.../Ionicons/png/512/ios7-infinite.png | Bin 0 -> 2989 bytes
.../png/512/ios7-information-empty.png | Bin 0 -> 837 bytes
.../png/512/ios7-information-outline.png | Bin 0 -> 4563 bytes
.../Ionicons/png/512/ios7-information.png | Bin 0 -> 2959 bytes
.../Ionicons/png/512/ios7-ionic-outline.png | Bin 0 -> 5780 bytes
.../Ionicons/png/512/ios7-keypad-outline.png | Bin 0 -> 7485 bytes
.../Ionicons/png/512/ios7-keypad.png | Bin 0 -> 7505 bytes
.../png/512/ios7-lightbulb-outline.png | Bin 0 -> 3791 bytes
.../Ionicons/png/512/ios7-lightbulb.png | Bin 0 -> 2696 bytes
.../png/512/ios7-location-outline.png | Bin 0 -> 4116 bytes
.../Ionicons/png/512/ios7-location.png | Bin 0 -> 2767 bytes
.../Ionicons/png/512/ios7-locked-outline.png | Bin 0 -> 2640 bytes
.../Ionicons/png/512/ios7-locked.png | Bin 0 -> 2674 bytes
.../Ionicons/png/512/ios7-loop-strong.png | Bin 0 -> 4101 bytes
.../Ionicons/png/512/ios7-loop.png | Bin 0 -> 4270 bytes
.../Ionicons/png/512/ios7-medkit-outline.png | Bin 0 -> 1386 bytes
.../Ionicons/png/512/ios7-medkit.png | Bin 0 -> 1373 bytes
.../Ionicons/png/512/ios7-mic-off.png | Bin 0 -> 7597 bytes
.../Ionicons/png/512/ios7-mic-outline.png | Bin 0 -> 3550 bytes
.../Ionicons/png/512/ios7-mic.png | Bin 0 -> 3878 bytes
.../Ionicons/png/512/ios7-minus-empty.png | Bin 0 -> 153 bytes
.../Ionicons/png/512/ios7-minus-outline.png | Bin 0 -> 4137 bytes
.../Ionicons/png/512/ios7-minus.png | Bin 0 -> 2520 bytes
.../Ionicons/png/512/ios7-monitor-outline.png | Bin 0 -> 225 bytes
.../Ionicons/png/512/ios7-monitor.png | Bin 0 -> 230 bytes
.../Ionicons/png/512/ios7-moon-outline.png | Bin 0 -> 2566 bytes
.../Ionicons/png/512/ios7-moon.png | Bin 0 -> 1784 bytes
.../Ionicons/png/512/ios7-more-outline.png | Bin 0 -> 1598 bytes
.../Ionicons/png/512/ios7-more.png | Bin 0 -> 1700 bytes
.../Ionicons/png/512/ios7-musical-note.png | Bin 0 -> 1521 bytes
.../Ionicons/png/512/ios7-musical-notes.png | Bin 0 -> 2124 bytes
.../png/512/ios7-navigate-outline.png | Bin 0 -> 4901 bytes
.../Ionicons/png/512/ios7-navigate.png | Bin 0 -> 3333 bytes
.../Ionicons/png/512/ios7-paper-outline.png | Bin 0 -> 1361 bytes
.../Ionicons/png/512/ios7-paper.png | Bin 0 -> 1197 bytes
.../png/512/ios7-paperplane-outline.png | Bin 0 -> 2952 bytes
.../Ionicons/png/512/ios7-paperplane.png | Bin 0 -> 4805 bytes
.../png/512/ios7-partlysunny-outline.png | Bin 0 -> 4823 bytes
.../Ionicons/png/512/ios7-partlysunny.png | Bin 0 -> 4052 bytes
.../Ionicons/png/512/ios7-pause-outline.png | Bin 0 -> 227 bytes
.../Ionicons/png/512/ios7-pause.png | Bin 0 -> 213 bytes
.../Ionicons/png/512/ios7-paw-outline.png | Bin 0 -> 6318 bytes
.../Ionicons/png/512/ios7-paw.png | Bin 0 -> 4119 bytes
.../Ionicons/png/512/ios7-people-outline.png | Bin 0 -> 5295 bytes
.../Ionicons/png/512/ios7-people.png | Bin 0 -> 3439 bytes
.../Ionicons/png/512/ios7-person-outline.png | Bin 0 -> 3189 bytes
.../Ionicons/png/512/ios7-person.png | Bin 0 -> 2046 bytes
.../png/512/ios7-personadd-outline.png | Bin 0 -> 3246 bytes
.../Ionicons/png/512/ios7-personadd.png | Bin 0 -> 2110 bytes
.../Ionicons/png/512/ios7-photos-outline.png | Bin 0 -> 234 bytes
.../Ionicons/png/512/ios7-photos.png | Bin 0 -> 226 bytes
.../Ionicons/png/512/ios7-pie-outline.png | Bin 0 -> 4549 bytes
.../Ionicons/png/512/ios7-pie.png | Bin 0 -> 3646 bytes
.../Ionicons/png/512/ios7-play-outline.png | Bin 0 -> 1474 bytes
.../Ionicons/png/512/ios7-play.png | Bin 0 -> 1216 bytes
.../Ionicons/png/512/ios7-plus-empty.png | Bin 0 -> 204 bytes
.../Ionicons/png/512/ios7-plus-outline.png | Bin 0 -> 4415 bytes
.../Ionicons/png/512/ios7-plus.png | Bin 0 -> 2970 bytes
.../png/512/ios7-pricetag-outline.png | Bin 0 -> 3007 bytes
.../Ionicons/png/512/ios7-pricetag.png | Bin 0 -> 2593 bytes
.../png/512/ios7-pricetags-outline.png | Bin 0 -> 3563 bytes
.../Ionicons/png/512/ios7-pricetags.png | Bin 0 -> 3219 bytes
.../Ionicons/png/512/ios7-printer-outline.png | Bin 0 -> 1764 bytes
.../Ionicons/png/512/ios7-printer.png | Bin 0 -> 1456 bytes
.../Ionicons/png/512/ios7-pulse-strong.png | Bin 0 -> 3326 bytes
.../Ionicons/png/512/ios7-pulse.png | Bin 0 -> 2955 bytes
.../Ionicons/png/512/ios7-rainy-outline.png | Bin 0 -> 3346 bytes
.../Ionicons/png/512/ios7-rainy.png | Bin 0 -> 2567 bytes
.../png/512/ios7-recording-outline.png | Bin 0 -> 4926 bytes
.../Ionicons/png/512/ios7-recording.png | Bin 0 -> 3762 bytes
.../Ionicons/png/512/ios7-redo-outline.png | Bin 0 -> 3094 bytes
.../Ionicons/png/512/ios7-redo.png | Bin 0 -> 2054 bytes
.../Ionicons/png/512/ios7-refresh-empty.png | Bin 0 -> 2685 bytes
.../Ionicons/png/512/ios7-refresh-outline.png | Bin 0 -> 6021 bytes
.../Ionicons/png/512/ios7-refresh.png | Bin 0 -> 4579 bytes
.../Ionicons/png/512/ios7-reload.png | Bin 0 -> 4195 bytes
.../png/512/ios7-reverse-camera-outline.png | Bin 0 -> 3404 bytes
.../Ionicons/png/512/ios7-reverse-camera.png | Bin 0 -> 3019 bytes
.../Ionicons/png/512/ios7-rewind-outline.png | Bin 0 -> 2898 bytes
.../Ionicons/png/512/ios7-rewind.png | Bin 0 -> 2362 bytes
.../Ionicons/png/512/ios7-search-strong.png | Bin 0 -> 3329 bytes
.../Ionicons/png/512/ios7-search.png | Bin 0 -> 3361 bytes
.../Ionicons/png/512/ios7-settings-strong.png | Bin 0 -> 1714 bytes
.../Ionicons/png/512/ios7-settings.png | Bin 0 -> 2160 bytes
.../Ionicons/png/512/ios7-shrink.png | Bin 0 -> 490 bytes
.../png/512/ios7-skipbackward-outline.png | Bin 0 -> 1890 bytes
.../Ionicons/png/512/ios7-skipbackward.png | Bin 0 -> 1533 bytes
.../png/512/ios7-skipforward-outline.png | Bin 0 -> 1827 bytes
.../Ionicons/png/512/ios7-skipforward.png | Bin 0 -> 1556 bytes
.../Ionicons/png/512/ios7-snowy.png | Bin 0 -> 3775 bytes
.../png/512/ios7-speedometer-outline.png | Bin 0 -> 4678 bytes
.../Ionicons/png/512/ios7-speedometer.png | Bin 0 -> 5748 bytes
.../Ionicons/png/512/ios7-star-half.png | Bin 0 -> 3431 bytes
.../Ionicons/png/512/ios7-star-outline.png | Bin 0 -> 3572 bytes
.../Ionicons/png/512/ios7-star.png | Bin 0 -> 2463 bytes
.../png/512/ios7-stopwatch-outline.png | Bin 0 -> 4823 bytes
.../Ionicons/png/512/ios7-stopwatch.png | Bin 0 -> 3451 bytes
.../Ionicons/png/512/ios7-sunny-outline.png | Bin 0 -> 2669 bytes
.../Ionicons/png/512/ios7-sunny.png | Bin 0 -> 2506 bytes
.../png/512/ios7-telephone-outline.png | Bin 0 -> 3779 bytes
.../Ionicons/png/512/ios7-telephone.png | Bin 0 -> 2352 bytes
.../png/512/ios7-tennisball-outline.png | Bin 0 -> 5535 bytes
.../Ionicons/png/512/ios7-tennisball.png | Bin 0 -> 6356 bytes
.../png/512/ios7-thunderstorm-outline.png | Bin 0 -> 3053 bytes
.../Ionicons/png/512/ios7-thunderstorm.png | Bin 0 -> 2492 bytes
.../Ionicons/png/512/ios7-time-outline.png | Bin 0 -> 5875 bytes
.../Ionicons/png/512/ios7-time.png | Bin 0 -> 4136 bytes
.../Ionicons/png/512/ios7-timer-outline.png | Bin 0 -> 4578 bytes
.../Ionicons/png/512/ios7-timer.png | Bin 0 -> 6013 bytes
.../Ionicons/png/512/ios7-toggle-outline.png | Bin 0 -> 5660 bytes
.../Ionicons/png/512/ios7-toggle.png | Bin 0 -> 4825 bytes
.../Ionicons/png/512/ios7-trash-outline.png | Bin 0 -> 4497 bytes
.../Ionicons/png/512/ios7-trash.png | Bin 0 -> 2760 bytes
.../Ionicons/png/512/ios7-undo-outline.png | Bin 0 -> 3114 bytes
.../Ionicons/png/512/ios7-undo.png | Bin 0 -> 1954 bytes
.../png/512/ios7-unlocked-outline.png | Bin 0 -> 2580 bytes
.../Ionicons/png/512/ios7-unlocked.png | Bin 0 -> 2605 bytes
.../Ionicons/png/512/ios7-upload-outline.png | Bin 0 -> 1128 bytes
.../Ionicons/png/512/ios7-upload.png | Bin 0 -> 1085 bytes
.../png/512/ios7-videocam-outline.png | Bin 0 -> 2038 bytes
.../Ionicons/png/512/ios7-videocam.png | Bin 0 -> 2715 bytes
.../Ionicons/png/512/ios7-volume-high.png | Bin 0 -> 2977 bytes
.../Ionicons/png/512/ios7-volume-low.png | Bin 0 -> 956 bytes
.../png/512/ios7-wineglass-outline.png | Bin 0 -> 2527 bytes
.../Ionicons/png/512/ios7-wineglass.png | Bin 0 -> 2013 bytes
.../Ionicons/png/512/ios7-world-outline.png | Bin 0 -> 7420 bytes
.../Ionicons/png/512/ios7-world.png | Bin 0 -> 10031 bytes
.../Ionicons/png/512/ipad.png | Bin 0 -> 1356 bytes
.../Ionicons/png/512/iphone.png | Bin 0 -> 1651 bytes
.../Ionicons/png/512/ipod.png | Bin 0 -> 3207 bytes
.../bower_components/Ionicons/png/512/jet.png | Bin 0 -> 2856 bytes
.../bower_components/Ionicons/png/512/key.png | Bin 0 -> 2722 bytes
.../Ionicons/png/512/knife.png | Bin 0 -> 1822 bytes
.../Ionicons/png/512/laptop.png | Bin 0 -> 2474 bytes
.../Ionicons/png/512/leaf.png | Bin 0 -> 3440 bytes
.../Ionicons/png/512/levels.png | Bin 0 -> 2431 bytes
.../Ionicons/png/512/lightbulb.png | Bin 0 -> 2474 bytes
.../Ionicons/png/512/link.png | Bin 0 -> 2306 bytes
.../Ionicons/png/512/load-a.png | Bin 0 -> 3941 bytes
.../Ionicons/png/512/load-b.png | Bin 0 -> 5473 bytes
.../Ionicons/png/512/load-c.png | Bin 0 -> 4337 bytes
.../Ionicons/png/512/load-d.png | Bin 0 -> 6618 bytes
.../Ionicons/png/512/location.png | Bin 0 -> 2739 bytes
.../Ionicons/png/512/locked.png | Bin 0 -> 2494 bytes
.../Ionicons/png/512/log-in.png | Bin 0 -> 1460 bytes
.../Ionicons/png/512/log-out.png | Bin 0 -> 1637 bytes
.../Ionicons/png/512/loop.png | Bin 0 -> 3794 bytes
.../Ionicons/png/512/magnet.png | Bin 0 -> 4495 bytes
.../Ionicons/png/512/male.png | Bin 0 -> 3788 bytes
.../bower_components/Ionicons/png/512/man.png | Bin 0 -> 2126 bytes
.../bower_components/Ionicons/png/512/map.png | Bin 0 -> 4906 bytes
.../Ionicons/png/512/medkit.png | Bin 0 -> 1605 bytes
.../Ionicons/png/512/merge.png | Bin 0 -> 3879 bytes
.../Ionicons/png/512/mic-a.png | Bin 0 -> 4098 bytes
.../Ionicons/png/512/mic-b.png | Bin 0 -> 2576 bytes
.../Ionicons/png/512/mic-c.png | Bin 0 -> 1726 bytes
.../Ionicons/png/512/minus-circled.png | Bin 0 -> 2655 bytes
.../Ionicons/png/512/minus-round.png | Bin 0 -> 937 bytes
.../Ionicons/png/512/minus.png | Bin 0 -> 160 bytes
.../Ionicons/png/512/model-s.png | Bin 0 -> 4262 bytes
.../Ionicons/png/512/monitor.png | Bin 0 -> 1469 bytes
.../Ionicons/png/512/more.png | Bin 0 -> 3357 bytes
.../Ionicons/png/512/mouse.png | Bin 0 -> 2891 bytes
.../Ionicons/png/512/music-note.png | Bin 0 -> 2519 bytes
.../Ionicons/png/512/navicon-round.png | Bin 0 -> 1628 bytes
.../Ionicons/png/512/navicon.png | Bin 0 -> 175 bytes
.../Ionicons/png/512/navigate.png | Bin 0 -> 1693 bytes
.../Ionicons/png/512/network.png | Bin 0 -> 3041 bytes
.../Ionicons/png/512/no-smoking.png | Bin 0 -> 5816 bytes
.../Ionicons/png/512/nuclear.png | Bin 0 -> 3618 bytes
.../Ionicons/png/512/outlet.png | Bin 0 -> 2882 bytes
.../Ionicons/png/512/paper-airplane.png | Bin 0 -> 3678 bytes
.../Ionicons/png/512/paperclip.png | Bin 0 -> 2710 bytes
.../Ionicons/png/512/pause.png | Bin 0 -> 1340 bytes
.../Ionicons/png/512/person-add.png | Bin 0 -> 2410 bytes
.../Ionicons/png/512/person-stalker.png | Bin 0 -> 3272 bytes
.../Ionicons/png/512/person.png | Bin 0 -> 2258 bytes
.../Ionicons/png/512/pie-graph.png | Bin 0 -> 3608 bytes
.../bower_components/Ionicons/png/512/pin.png | Bin 0 -> 2270 bytes
.../Ionicons/png/512/pinpoint.png | Bin 0 -> 4799 bytes
.../Ionicons/png/512/pizza.png | Bin 0 -> 4548 bytes
.../Ionicons/png/512/plane.png | Bin 0 -> 3218 bytes
.../Ionicons/png/512/planet.png | Bin 0 -> 4319 bytes
.../Ionicons/png/512/play.png | Bin 0 -> 1787 bytes
.../Ionicons/png/512/playstation.png | Bin 0 -> 3275 bytes
.../Ionicons/png/512/plus-circled.png | Bin 0 -> 3114 bytes
.../Ionicons/png/512/plus-round.png | Bin 0 -> 1567 bytes
.../Ionicons/png/512/plus.png | Bin 0 -> 223 bytes
.../Ionicons/png/512/podium.png | Bin 0 -> 209 bytes
.../Ionicons/png/512/pound.png | Bin 0 -> 2383 bytes
.../Ionicons/png/512/power.png | Bin 0 -> 4727 bytes
.../Ionicons/png/512/pricetag.png | Bin 0 -> 2457 bytes
.../Ionicons/png/512/pricetags.png | Bin 0 -> 2906 bytes
.../Ionicons/png/512/printer.png | Bin 0 -> 1869 bytes
.../Ionicons/png/512/pull-request.png | Bin 0 -> 3613 bytes
.../Ionicons/png/512/qr-scanner.png | Bin 0 -> 1842 bytes
.../Ionicons/png/512/quote.png | Bin 0 -> 1743 bytes
.../Ionicons/png/512/radio-waves.png | Bin 0 -> 4978 bytes
.../Ionicons/png/512/record.png | Bin 0 -> 3779 bytes
.../Ionicons/png/512/refresh.png | Bin 0 -> 3582 bytes
.../Ionicons/png/512/reply-all.png | Bin 0 -> 3033 bytes
.../Ionicons/png/512/reply.png | Bin 0 -> 2131 bytes
.../Ionicons/png/512/ribbon-a.png | Bin 0 -> 6449 bytes
.../Ionicons/png/512/ribbon-b.png | Bin 0 -> 5913 bytes
.../bower_components/Ionicons/png/512/sad.png | Bin 0 -> 5517 bytes
.../Ionicons/png/512/scissors.png | Bin 0 -> 5061 bytes
.../Ionicons/png/512/search.png | Bin 0 -> 3229 bytes
.../Ionicons/png/512/settings.png | Bin 0 -> 4141 bytes
.../Ionicons/png/512/share.png | Bin 0 -> 2616 bytes
.../Ionicons/png/512/shuffle.png | Bin 0 -> 3420 bytes
.../Ionicons/png/512/skip-backward.png | Bin 0 -> 2421 bytes
.../Ionicons/png/512/skip-forward.png | Bin 0 -> 2402 bytes
.../png/512/social-android-outline.png | Bin 0 -> 3772 bytes
.../Ionicons/png/512/social-android.png | Bin 0 -> 2784 bytes
.../Ionicons/png/512/social-apple-outline.png | Bin 0 -> 4104 bytes
.../Ionicons/png/512/social-apple.png | Bin 0 -> 2647 bytes
.../png/512/social-bitcoin-outline.png | Bin 0 -> 3790 bytes
.../Ionicons/png/512/social-bitcoin.png | Bin 0 -> 2424 bytes
.../png/512/social-buffer-outline.png | Bin 0 -> 3913 bytes
.../Ionicons/png/512/social-buffer.png | Bin 0 -> 4687 bytes
.../png/512/social-designernews-outline.png | Bin 0 -> 4754 bytes
.../Ionicons/png/512/social-designernews.png | Bin 0 -> 4242 bytes
.../png/512/social-dribbble-outline.png | Bin 0 -> 5588 bytes
.../Ionicons/png/512/social-dribbble.png | Bin 0 -> 6983 bytes
.../png/512/social-dropbox-outline.png | Bin 0 -> 5113 bytes
.../Ionicons/png/512/social-dropbox.png | Bin 0 -> 6161 bytes
.../png/512/social-facebook-outline.png | Bin 0 -> 1788 bytes
.../Ionicons/png/512/social-facebook.png | Bin 0 -> 1402 bytes
.../png/512/social-foursquare-outline.png | Bin 0 -> 3364 bytes
.../Ionicons/png/512/social-foursquare.png | Bin 0 -> 3021 bytes
.../Ionicons/png/512/social-freebsd-devil.png | Bin 0 -> 5300 bytes
.../png/512/social-github-outline.png | Bin 0 -> 7475 bytes
.../Ionicons/png/512/social-github.png | Bin 0 -> 4561 bytes
.../png/512/social-google-outline.png | Bin 0 -> 3890 bytes
.../Ionicons/png/512/social-google.png | Bin 0 -> 3682 bytes
.../png/512/social-googleplus-outline.png | Bin 0 -> 4071 bytes
.../Ionicons/png/512/social-googleplus.png | Bin 0 -> 3888 bytes
.../png/512/social-hackernews-outline.png | Bin 0 -> 1994 bytes
.../Ionicons/png/512/social-hackernews.png | Bin 0 -> 1905 bytes
.../png/512/social-instagram-outline.png | Bin 0 -> 3317 bytes
.../Ionicons/png/512/social-instagram.png | Bin 0 -> 4403 bytes
.../png/512/social-linkedin-outline.png | Bin 0 -> 2370 bytes
.../Ionicons/png/512/social-linkedin.png | Bin 0 -> 2275 bytes
.../png/512/social-pinterest-outline.png | Bin 0 -> 6933 bytes
.../Ionicons/png/512/social-pinterest.png | Bin 0 -> 5532 bytes
.../png/512/social-reddit-outline.png | Bin 0 -> 6414 bytes
.../Ionicons/png/512/social-reddit.png | Bin 0 -> 4498 bytes
.../Ionicons/png/512/social-rss-outline.png | Bin 0 -> 5945 bytes
.../Ionicons/png/512/social-rss.png | Bin 0 -> 4789 bytes
.../Ionicons/png/512/social-skype-outline.png | Bin 0 -> 5608 bytes
.../Ionicons/png/512/social-skype.png | Bin 0 -> 4269 bytes
.../png/512/social-tumblr-outline.png | Bin 0 -> 2725 bytes
.../Ionicons/png/512/social-tumblr.png | Bin 0 -> 1946 bytes
.../Ionicons/png/512/social-tux.png | Bin 0 -> 7103 bytes
.../png/512/social-twitter-outline.png | Bin 0 -> 5569 bytes
.../Ionicons/png/512/social-twitter.png | Bin 0 -> 3405 bytes
.../Ionicons/png/512/social-usd-outline.png | Bin 0 -> 5744 bytes
.../Ionicons/png/512/social-usd.png | Bin 0 -> 3446 bytes
.../Ionicons/png/512/social-vimeo-outline.png | Bin 0 -> 5525 bytes
.../Ionicons/png/512/social-vimeo.png | Bin 0 -> 3456 bytes
.../png/512/social-windows-outline.png | Bin 0 -> 1775 bytes
.../Ionicons/png/512/social-windows.png | Bin 0 -> 2550 bytes
.../png/512/social-wordpress-outline.png | Bin 0 -> 6418 bytes
.../Ionicons/png/512/social-wordpress.png | Bin 0 -> 5465 bytes
.../Ionicons/png/512/social-yahoo-outline.png | Bin 0 -> 2119 bytes
.../Ionicons/png/512/social-yahoo.png | Bin 0 -> 1729 bytes
.../png/512/social-youtube-outline.png | Bin 0 -> 4655 bytes
.../Ionicons/png/512/social-youtube.png | Bin 0 -> 2511 bytes
.../Ionicons/png/512/speakerphone.png | Bin 0 -> 4310 bytes
.../Ionicons/png/512/speedometer.png | Bin 0 -> 4238 bytes
.../Ionicons/png/512/spoon.png | Bin 0 -> 2306 bytes
.../Ionicons/png/512/star.png | Bin 0 -> 2195 bytes
.../Ionicons/png/512/stats-bars.png | Bin 0 -> 218 bytes
.../Ionicons/png/512/steam.png | Bin 0 -> 3875 bytes
.../Ionicons/png/512/stop.png | Bin 0 -> 1090 bytes
.../Ionicons/png/512/thermometer.png | Bin 0 -> 1980 bytes
.../Ionicons/png/512/thumbsdown.png | Bin 0 -> 2288 bytes
.../Ionicons/png/512/thumbsup.png | Bin 0 -> 2356 bytes
.../Ionicons/png/512/toggle-filled.png | Bin 0 -> 3194 bytes
.../Ionicons/png/512/toggle.png | Bin 0 -> 3599 bytes
.../Ionicons/png/512/trash-a.png | Bin 0 -> 2752 bytes
.../Ionicons/png/512/trash-b.png | Bin 0 -> 1882 bytes
.../Ionicons/png/512/trophy.png | Bin 0 -> 3579 bytes
.../Ionicons/png/512/umbrella.png | Bin 0 -> 3416 bytes
.../Ionicons/png/512/university.png | Bin 0 -> 3167 bytes
.../Ionicons/png/512/unlocked.png | Bin 0 -> 2412 bytes
.../Ionicons/png/512/upload.png | Bin 0 -> 2480 bytes
.../bower_components/Ionicons/png/512/usb.png | Bin 0 -> 3950 bytes
.../Ionicons/png/512/videocamera.png | Bin 0 -> 2381 bytes
.../Ionicons/png/512/volume-high.png | Bin 0 -> 4334 bytes
.../Ionicons/png/512/volume-low.png | Bin 0 -> 2136 bytes
.../Ionicons/png/512/volume-medium.png | Bin 0 -> 3174 bytes
.../Ionicons/png/512/volume-mute.png | Bin 0 -> 4803 bytes
.../Ionicons/png/512/wand.png | Bin 0 -> 1933 bytes
.../Ionicons/png/512/waterdrop.png | Bin 0 -> 3169 bytes
.../Ionicons/png/512/wifi.png | Bin 0 -> 3037 bytes
.../Ionicons/png/512/wineglass.png | Bin 0 -> 3734 bytes
.../Ionicons/png/512/woman.png | Bin 0 -> 3592 bytes
.../Ionicons/png/512/wrench.png | Bin 0 -> 2866 bytes
.../Ionicons/png/512/xbox.png | Bin 0 -> 4958 bytes
.../bower_components/Ionicons/readme.md | 60 +
.../Ionicons/scss/_ionicons-font.scss | 27 +
.../Ionicons/scss/_ionicons-icons.scss | 1473 +
.../Ionicons/scss/_ionicons-variables.scss | 741 +
.../Ionicons/scss/ionicons.scss | 15 +
.../Ionicons/src/alert-circled.svg | 11 +
.../bower_components/Ionicons/src/alert.svg | 9 +
.../Ionicons/src/android-add-circle.svg | 12 +
.../Ionicons/src/android-add.svg | 11 +
.../Ionicons/src/android-alarm-clock.svg | 15 +
.../Ionicons/src/android-alert.svg | 12 +
.../Ionicons/src/android-apps.svg | 12 +
.../Ionicons/src/android-archive.svg | 12 +
.../Ionicons/src/android-arrow-back.svg | 11 +
.../Ionicons/src/android-arrow-down.svg | 11 +
.../src/android-arrow-dropdown-circle.svg | 10 +
.../Ionicons/src/android-arrow-dropdown.svg | 9 +
.../src/android-arrow-dropleft-circle.svg | 10 +
.../Ionicons/src/android-arrow-dropleft.svg | 9 +
.../src/android-arrow-dropright-circle.svg | 10 +
.../Ionicons/src/android-arrow-dropright.svg | 9 +
.../src/android-arrow-dropup-circle.svg | 10 +
.../Ionicons/src/android-arrow-dropup.svg | 9 +
.../Ionicons/src/android-arrow-forward.svg | 11 +
.../Ionicons/src/android-arrow-up.svg | 11 +
.../Ionicons/src/android-attach.svg | 15 +
.../Ionicons/src/android-bar.svg | 12 +
.../Ionicons/src/android-bicycle.svg | 19 +
.../Ionicons/src/android-boat.svg | 16 +
.../Ionicons/src/android-bookmark.svg | 7 +
.../Ionicons/src/android-bulb.svg | 18 +
.../Ionicons/src/android-bus.svg | 18 +
.../Ionicons/src/android-calendar.svg | 11 +
.../Ionicons/src/android-call.svg | 10 +
.../Ionicons/src/android-camera.svg | 12 +
.../Ionicons/src/android-cancel.svg | 11 +
.../Ionicons/src/android-car.svg | 15 +
.../Ionicons/src/android-cart.svg | 14 +
.../Ionicons/src/android-chat.svg | 12 +
.../Ionicons/src/android-checkbox-blank.svg | 12 +
.../src/android-checkbox-outline-blank.svg | 13 +
.../Ionicons/src/android-checkbox-outline.svg | 13 +
.../Ionicons/src/android-checkbox.svg | 13 +
.../Ionicons/src/android-checkmark-circle.svg | 9 +
.../Ionicons/src/android-clipboard.svg | 10 +
.../Ionicons/src/android-close.svg | 12 +
.../Ionicons/src/android-cloud-circle.svg | 16 +
.../Ionicons/src/android-cloud-done.svg | 12 +
.../Ionicons/src/android-cloud-outline.svg | 16 +
.../Ionicons/src/android-cloud.svg | 9 +
.../Ionicons/src/android-color-palette.svg | 17 +
.../Ionicons/src/android-compass.svg | 9 +
.../Ionicons/src/android-contact.svg | 15 +
.../Ionicons/src/android-contacts.svg | 26 +
.../Ionicons/src/android-contract.svg | 12 +
.../Ionicons/src/android-create.svg | 13 +
.../Ionicons/src/android-delete.svg | 10 +
.../Ionicons/src/android-desktop.svg | 13 +
.../Ionicons/src/android-document.svg | 10 +
.../Ionicons/src/android-done-all.svg | 13 +
.../Ionicons/src/android-done.svg | 13 +
.../Ionicons/src/android-download.svg | 9 +
.../Ionicons/src/android-drafts.svg | 15 +
.../Ionicons/src/android-exit.svg | 9 +
.../Ionicons/src/android-expand.svg | 12 +
.../Ionicons/src/android-favorite-outline.svg | 13 +
.../Ionicons/src/android-favorite.svg | 11 +
.../Ionicons/src/android-film.svg | 9 +
.../Ionicons/src/android-folder-open.svg | 10 +
.../Ionicons/src/android-folder.svg | 14 +
.../Ionicons/src/android-funnel.svg | 7 +
.../Ionicons/src/android-globe.svg | 24 +
.../Ionicons/src/android-hand.svg | 15 +
.../Ionicons/src/android-hangout.svg | 9 +
.../Ionicons/src/android-happy.svg | 12 +
.../Ionicons/src/android-home.svg | 9 +
.../Ionicons/src/android-image.svg | 13 +
.../Ionicons/src/android-laptop.svg | 14 +
.../Ionicons/src/android-list.svg | 10 +
.../Ionicons/src/android-locate.svg | 16 +
.../Ionicons/src/android-lock.svg | 14 +
.../Ionicons/src/android-mail.svg | 13 +
.../Ionicons/src/android-map.svg | 16 +
.../Ionicons/src/android-menu.svg | 11 +
.../Ionicons/src/android-microphone-off.svg | 17 +
.../Ionicons/src/android-microphone.svg | 12 +
.../Ionicons/src/android-more-horizontal.svg | 9 +
.../Ionicons/src/android-more-vertical.svg | 9 +
.../Ionicons/src/android-navigate.svg | 11 +
.../src/android-notifications-none.svg | 11 +
.../src/android-notifications-off.svg | 13 +
.../Ionicons/src/android-notifications.svg | 9 +
.../Ionicons/src/android-open.svg | 9 +
.../Ionicons/src/android-options.svg | 26 +
.../Ionicons/src/android-people.svg | 11 +
.../Ionicons/src/android-person-add.svg | 17 +
.../Ionicons/src/android-person.svg | 10 +
.../Ionicons/src/android-phone-landscape.svg | 12 +
.../Ionicons/src/android-phone-portrait.svg | 12 +
.../Ionicons/src/android-pin.svg | 11 +
.../Ionicons/src/android-plane.svg | 12 +
.../Ionicons/src/android-playstore.svg | 11 +
.../Ionicons/src/android-print.svg | 10 +
.../Ionicons/src/android-radio-button-off.svg | 12 +
.../Ionicons/src/android-radio-button-on.svg | 13 +
.../Ionicons/src/android-refresh.svg | 11 +
.../Ionicons/src/android-remove-circle.svg | 10 +
.../Ionicons/src/android-remove.svg | 7 +
.../Ionicons/src/android-restaurant.svg | 17 +
.../Ionicons/src/android-sad.svg | 16 +
.../Ionicons/src/android-search.svg | 19 +
.../Ionicons/src/android-send.svg | 7 +
.../Ionicons/src/android-settings.svg | 19 +
.../Ionicons/src/android-share-alt.svg | 16 +
.../Ionicons/src/android-share.svg | 12 +
.../Ionicons/src/android-star-half.svg | 9 +
.../Ionicons/src/android-star-outline.svg | 10 +
.../Ionicons/src/android-star.svg | 10 +
.../Ionicons/src/android-stopwatch.svg | 21 +
.../Ionicons/src/android-subway.svg | 13 +
.../Ionicons/src/android-sunny.svg | 18 +
.../Ionicons/src/android-sync.svg | 10 +
.../Ionicons/src/android-textsms.svg | 10 +
.../Ionicons/src/android-time.svg | 15 +
.../Ionicons/src/android-train.svg | 15 +
.../Ionicons/src/android-unlock.svg | 10 +
.../Ionicons/src/android-upload.svg | 9 +
.../Ionicons/src/android-volume-down.svg | 8 +
.../Ionicons/src/android-volume-mute.svg | 7 +
.../Ionicons/src/android-volume-off.svg | 15 +
.../Ionicons/src/android-volume-up.svg | 9 +
.../Ionicons/src/android-walk.svg | 12 +
.../Ionicons/src/android-warning.svg | 11 +
.../Ionicons/src/android-watch.svg | 15 +
.../Ionicons/src/android-wifi.svg | 14 +
.../Ionicons/src/aperture.svg | 20 +
.../bower_components/Ionicons/src/archive.svg | 12 +
.../Ionicons/src/arrow-down-a.svg | 7 +
.../Ionicons/src/arrow-down-b.svg | 8 +
.../Ionicons/src/arrow-down-c.svg | 9 +
.../Ionicons/src/arrow-expand.svg | 12 +
.../Ionicons/src/arrow-graph-down-left.svg | 7 +
.../Ionicons/src/arrow-graph-down-right.svg | 7 +
.../Ionicons/src/arrow-graph-up-left.svg | 7 +
.../Ionicons/src/arrow-graph-up-right.svg | 7 +
.../Ionicons/src/arrow-left-a.svg | 7 +
.../Ionicons/src/arrow-left-b.svg | 8 +
.../Ionicons/src/arrow-left-c.svg | 9 +
.../Ionicons/src/arrow-move.svg | 8 +
.../Ionicons/src/arrow-resize.svg | 8 +
.../Ionicons/src/arrow-return-left.svg | 8 +
.../Ionicons/src/arrow-return-right.svg | 8 +
.../Ionicons/src/arrow-right-a.svg | 7 +
.../Ionicons/src/arrow-right-b.svg | 8 +
.../Ionicons/src/arrow-right-c.svg | 9 +
.../Ionicons/src/arrow-shrink.svg | 12 +
.../Ionicons/src/arrow-swap.svg | 10 +
.../Ionicons/src/arrow-up-a.svg | 7 +
.../Ionicons/src/arrow-up-b.svg | 8 +
.../Ionicons/src/arrow-up-c.svg | 9 +
.../Ionicons/src/asterisk.svg | 8 +
.../bower_components/Ionicons/src/at.svg | 25 +
.../Ionicons/src/backspace-outline.svg | 21 +
.../Ionicons/src/backspace.svg | 17 +
.../bower_components/Ionicons/src/bag.svg | 10 +
.../Ionicons/src/battery-charging.svg | 9 +
.../Ionicons/src/battery-empty.svg | 8 +
.../Ionicons/src/battery-full.svg | 8 +
.../Ionicons/src/battery-half.svg | 9 +
.../Ionicons/src/battery-low.svg | 9 +
.../bower_components/Ionicons/src/beaker.svg | 20 +
.../bower_components/Ionicons/src/beer.svg | 28 +
.../Ionicons/src/bluetooth.svg | 18 +
.../bower_components/Ionicons/src/bonfire.svg | 32 +
.../Ionicons/src/bookmark.svg | 10 +
.../bower_components/Ionicons/src/bowtie.svg | 22 +
.../Ionicons/src/briefcase.svg | 12 +
.../bower_components/Ionicons/src/bug.svg | 30 +
.../Ionicons/src/calculator.svg | 10 +
.../Ionicons/src/calendar.svg | 12 +
.../bower_components/Ionicons/src/camera.svg | 15 +
.../bower_components/Ionicons/src/card.svg | 14 +
.../bower_components/Ionicons/src/cash.svg | 31 +
.../Ionicons/src/chatbox-working.svg | 11 +
.../bower_components/Ionicons/src/chatbox.svg | 8 +
.../Ionicons/src/chatboxes.svg | 12 +
.../Ionicons/src/chatbubble-working.svg | 12 +
.../Ionicons/src/chatbubble.svg | 9 +
.../Ionicons/src/chatbubbles.svg | 16 +
.../Ionicons/src/checkmark-circled.svg | 13 +
.../Ionicons/src/checkmark-round.svg | 9 +
.../Ionicons/src/checkmark.svg | 10 +
.../Ionicons/src/chevron-down.svg | 9 +
.../Ionicons/src/chevron-left.svg | 9 +
.../Ionicons/src/chevron-right.svg | 9 +
.../Ionicons/src/chevron-up.svg | 9 +
.../Ionicons/src/clipboard.svg | 22 +
.../bower_components/Ionicons/src/clock.svg | 21 +
.../Ionicons/src/close-circled.svg | 13 +
.../Ionicons/src/close-round.svg | 9 +
.../bower_components/Ionicons/src/close.svg | 10 +
.../Ionicons/src/closed-captioning.svg | 31 +
.../bower_components/Ionicons/src/cloud.svg | 9 +
.../Ionicons/src/code-download.svg | 31 +
.../Ionicons/src/code-working.svg | 21 +
.../bower_components/Ionicons/src/code.svg | 14 +
.../bower_components/Ionicons/src/coffee.svg | 13 +
.../bower_components/Ionicons/src/compass.svg | 16 +
.../bower_components/Ionicons/src/compose.svg | 14 +
.../Ionicons/src/connection-bars.svg | 12 +
.../Ionicons/src/contrast.svg | 9 +
.../bower_components/Ionicons/src/crop.svg | 11 +
.../bower_components/Ionicons/src/cube.svg | 19 +
.../bower_components/Ionicons/src/disc.svg | 13 +
.../Ionicons/src/document-text.svg | 15 +
.../Ionicons/src/document.svg | 10 +
.../bower_components/Ionicons/src/drag.svg | 11 +
.../bower_components/Ionicons/src/earth.svg | 44 +
.../bower_components/Ionicons/src/easel.svg | 15 +
.../bower_components/Ionicons/src/edit.svg | 13 +
.../bower_components/Ionicons/src/egg.svg | 7 +
.../bower_components/Ionicons/src/eject.svg | 12 +
.../Ionicons/src/email-unread.svg | 19 +
.../bower_components/Ionicons/src/email.svg | 15 +
.../Ionicons/src/erlenmeyer-flask-bubbles.svg | 15 +
.../Ionicons/src/erlenmeyer-flask.svg | 21 +
.../Ionicons/src/eye-disabled.svg | 18 +
.../bower_components/Ionicons/src/eye.svg | 15 +
.../bower_components/Ionicons/src/female.svg | 8 +
.../bower_components/Ionicons/src/filing.svg | 12 +
.../Ionicons/src/film-marker.svg | 10 +
.../Ionicons/src/fireball.svg | 16 +
.../bower_components/Ionicons/src/flag.svg | 12 +
.../bower_components/Ionicons/src/flame.svg | 11 +
.../Ionicons/src/flash-off.svg | 16 +
.../bower_components/Ionicons/src/flash.svg | 7 +
.../bower_components/Ionicons/src/folder.svg | 14 +
.../Ionicons/src/fork-repo.svg | 20 +
.../bower_components/Ionicons/src/fork.svg | 14 +
.../bower_components/Ionicons/src/forward.svg | 9 +
.../bower_components/Ionicons/src/funnel.svg | 13 +
.../bower_components/Ionicons/src/gear-a.svg | 15 +
.../bower_components/Ionicons/src/gear-b.svg | 11 +
.../bower_components/Ionicons/src/grid.svg | 32 +
.../bower_components/Ionicons/src/hammer.svg | 11 +
.../Ionicons/src/happy-outline.svg | 23 +
.../bower_components/Ionicons/src/happy.svg | 20 +
.../Ionicons/src/headphone.svg | 15 +
.../Ionicons/src/heart-broken.svg | 17 +
.../bower_components/Ionicons/src/heart.svg | 10 +
.../Ionicons/src/help-buoy.svg | 13 +
.../Ionicons/src/help-circled.svg | 15 +
.../bower_components/Ionicons/src/help.svg | 14 +
.../bower_components/Ionicons/src/home.svg | 9 +
.../Ionicons/src/icecream.svg | 15 +
.../bower_components/Ionicons/src/image.svg | 13 +
.../bower_components/Ionicons/src/images.svg | 20 +
.../Ionicons/src/information-circled.svg | 11 +
.../Ionicons/src/information.svg | 10 +
.../bower_components/Ionicons/src/ionic.svg | 18 +
.../Ionicons/src/ios-alarm-outline.svg | 21 +
.../Ionicons/src/ios-alarm.svg | 14 +
.../Ionicons/src/ios-albums-outline.svg | 11 +
.../Ionicons/src/ios-albums.svg | 11 +
.../src/ios-americanfootball-outline.svg | 24 +
.../Ionicons/src/ios-americanfootball.svg | 21 +
.../Ionicons/src/ios-analytics-outline.svg | 24 +
.../Ionicons/src/ios-analytics.svg | 17 +
.../Ionicons/src/ios-arrow-back.svg | 7 +
.../Ionicons/src/ios-arrow-down.svg | 7 +
.../Ionicons/src/ios-arrow-forward.svg | 7 +
.../Ionicons/src/ios-arrow-left.svg | 7 +
.../Ionicons/src/ios-arrow-right.svg | 7 +
.../Ionicons/src/ios-arrow-thin-down.svg | 9 +
.../Ionicons/src/ios-arrow-thin-left.svg | 9 +
.../Ionicons/src/ios-arrow-thin-right.svg | 9 +
.../Ionicons/src/ios-arrow-thin-up.svg | 9 +
.../Ionicons/src/ios-arrow-up.svg | 7 +
.../Ionicons/src/ios-at-outline.svg | 26 +
.../bower_components/Ionicons/src/ios-at.svg | 24 +
.../Ionicons/src/ios-barcode-outline.svg | 15 +
.../Ionicons/src/ios-barcode.svg | 10 +
.../Ionicons/src/ios-baseball-outline.svg | 35 +
.../Ionicons/src/ios-baseball.svg | 27 +
.../Ionicons/src/ios-basketball-outline.svg | 25 +
.../Ionicons/src/ios-basketball.svg | 21 +
.../Ionicons/src/ios-bell-outline.svg | 13 +
.../Ionicons/src/ios-bell.svg | 11 +
.../Ionicons/src/ios-body-outline.svg | 27 +
.../Ionicons/src/ios-body.svg | 17 +
.../Ionicons/src/ios-bolt-outline.svg | 8 +
.../Ionicons/src/ios-bolt.svg | 7 +
.../Ionicons/src/ios-book-outline.svg | 13 +
.../Ionicons/src/ios-book.svg | 12 +
.../Ionicons/src/ios-bookmarks-outline.svg | 13 +
.../Ionicons/src/ios-bookmarks.svg | 13 +
.../Ionicons/src/ios-box-outline.svg | 13 +
.../bower_components/Ionicons/src/ios-box.svg | 10 +
.../Ionicons/src/ios-briefcase-outline.svg | 11 +
.../Ionicons/src/ios-briefcase.svg | 13 +
.../Ionicons/src/ios-browsers-outline.svg | 12 +
.../Ionicons/src/ios-browsers.svg | 10 +
.../Ionicons/src/ios-calculator-outline.svg | 19 +
.../Ionicons/src/ios-calculator.svg | 9 +
.../Ionicons/src/ios-calendar-outline.svg | 14 +
.../Ionicons/src/ios-calendar.svg | 12 +
.../Ionicons/src/ios-camera-outline.svg | 17 +
.../Ionicons/src/ios-camera.svg | 13 +
.../Ionicons/src/ios-cart-outline.svg | 16 +
.../Ionicons/src/ios-cart.svg | 14 +
.../Ionicons/src/ios-chatboxes-outline.svg | 10 +
.../Ionicons/src/ios-chatboxes.svg | 10 +
.../Ionicons/src/ios-chatbubble-outline.svg | 14 +
.../Ionicons/src/ios-chatbubble.svg | 11 +
.../Ionicons/src/ios-checkmark-empty.svg | 10 +
.../Ionicons/src/ios-checkmark-outline.svg | 14 +
.../Ionicons/src/ios-checkmark.svg | 10 +
.../Ionicons/src/ios-circle-filled.svg | 18 +
.../Ionicons/src/ios-circle-outline.svg | 13 +
.../Ionicons/src/ios-clock-outline.svg | 12 +
.../Ionicons/src/ios-clock.svg | 10 +
.../Ionicons/src/ios-close-empty.svg | 13 +
.../Ionicons/src/ios-close-outline.svg | 20 +
.../Ionicons/src/ios-close.svg | 16 +
.../src/ios-cloud-download-outline.svg | 19 +
.../Ionicons/src/ios-cloud-download.svg | 12 +
.../Ionicons/src/ios-cloud-outline.svg | 12 +
.../Ionicons/src/ios-cloud-upload-outline.svg | 20 +
.../Ionicons/src/ios-cloud-upload.svg | 13 +
.../Ionicons/src/ios-cloud.svg | 9 +
.../Ionicons/src/ios-cloudy-night-outline.svg | 24 +
.../Ionicons/src/ios-cloudy-night.svg | 21 +
.../Ionicons/src/ios-cloudy-outline.svg | 17 +
.../Ionicons/src/ios-cloudy.svg | 14 +
.../Ionicons/src/ios-cog-outline.svg | 29 +
.../bower_components/Ionicons/src/ios-cog.svg | 23 +
.../Ionicons/src/ios-color-filter-outline.svg | 25 +
.../Ionicons/src/ios-color-filter.svg | 29 +
.../Ionicons/src/ios-color-wand-outline.svg | 17 +
.../Ionicons/src/ios-color-wand.svg | 16 +
.../Ionicons/src/ios-compose-outline.svg | 14 +
.../Ionicons/src/ios-compose.svg | 13 +
.../Ionicons/src/ios-contact-outline.svg | 13 +
.../Ionicons/src/ios-contact.svg | 13 +
.../Ionicons/src/ios-copy-outline.svg | 11 +
.../Ionicons/src/ios-copy.svg | 12 +
.../Ionicons/src/ios-crop-strong.svg | 12 +
.../Ionicons/src/ios-crop.svg | 12 +
.../Ionicons/src/ios-download-outline.svg | 14 +
.../Ionicons/src/ios-download.svg | 11 +
.../Ionicons/src/ios-drag.svg | 11 +
.../Ionicons/src/ios-email-outline.svg | 8 +
.../Ionicons/src/ios-email.svg | 11 +
.../Ionicons/src/ios-eye-outline.svg | 18 +
.../bower_components/Ionicons/src/ios-eye.svg | 13 +
.../Ionicons/src/ios-fastforward-outline.svg | 8 +
.../Ionicons/src/ios-fastforward.svg | 7 +
.../Ionicons/src/ios-filing-outline.svg | 9 +
.../Ionicons/src/ios-filing.svg | 11 +
.../Ionicons/src/ios-film-outline.svg | 9 +
.../Ionicons/src/ios-film.svg | 11 +
.../Ionicons/src/ios-flag-outline.svg | 13 +
.../Ionicons/src/ios-flag.svg | 11 +
.../Ionicons/src/ios-flame-outline.svg | 14 +
.../Ionicons/src/ios-flame.svg | 11 +
.../Ionicons/src/ios-flask-outline.svg | 19 +
.../Ionicons/src/ios-flask.svg | 17 +
.../Ionicons/src/ios-flower-outline.svg | 75 +
.../Ionicons/src/ios-flower.svg | 38 +
.../Ionicons/src/ios-folder-outline.svg | 11 +
.../Ionicons/src/ios-folder.svg | 13 +
.../Ionicons/src/ios-football-outline.svg | 20 +
.../Ionicons/src/ios-football.svg | 14 +
.../src/ios-game-controller-a-outline.svg | 26 +
.../Ionicons/src/ios-game-controller-a.svg | 19 +
.../src/ios-game-controller-b-outline.svg | 35 +
.../Ionicons/src/ios-game-controller-b.svg | 23 +
.../Ionicons/src/ios-gear-outline.svg | 40 +
.../Ionicons/src/ios-gear.svg | 17 +
.../Ionicons/src/ios-glasses-outline.svg | 12 +
.../Ionicons/src/ios-glasses.svg | 11 +
.../Ionicons/src/ios-grid-view-outline.svg | 8 +
.../Ionicons/src/ios-grid-view.svg | 11 +
.../Ionicons/src/ios-heart-outline.svg | 15 +
.../Ionicons/src/ios-heart.svg | 9 +
.../Ionicons/src/ios-help-empty.svg | 12 +
.../Ionicons/src/ios-help-outline.svg | 22 +
.../Ionicons/src/ios-help.svg | 12 +
.../Ionicons/src/ios-home-outline.svg | 11 +
.../Ionicons/src/ios-home.svg | 10 +
.../Ionicons/src/ios-infinite-outline.svg | 17 +
.../Ionicons/src/ios-infinite.svg | 16 +
.../Ionicons/src/ios-information-empty.svg | 12 +
.../Ionicons/src/ios-information-outline.svg | 17 +
.../Ionicons/src/ios-information.svg | 11 +
.../Ionicons/src/ios-ionic-outline.svg | 18 +
.../Ionicons/src/ios-keypad-outline.svg | 28 +
.../Ionicons/src/ios-keypad.svg | 20 +
.../Ionicons/src/ios-lightbulb-outline.svg | 17 +
.../Ionicons/src/ios-lightbulb.svg | 16 +
.../Ionicons/src/ios-list-outline.svg | 23 +
.../Ionicons/src/ios-list.svg | 11 +
.../Ionicons/src/ios-location-outline.svg | 14 +
.../Ionicons/src/ios-location.svg | 8 +
.../Ionicons/src/ios-locked-outline.svg | 14 +
.../Ionicons/src/ios-locked.svg | 12 +
.../Ionicons/src/ios-loop-strong.svg | 18 +
.../Ionicons/src/ios-loop.svg | 22 +
.../Ionicons/src/ios-medical-outline.svg | 10 +
.../Ionicons/src/ios-medical.svg | 8 +
.../Ionicons/src/ios-medkit-outline.svg | 14 +
.../Ionicons/src/ios-medkit.svg | 13 +
.../Ionicons/src/ios-mic-off.svg | 14 +
.../Ionicons/src/ios-mic-outline.svg | 12 +
.../bower_components/Ionicons/src/ios-mic.svg | 12 +
.../Ionicons/src/ios-minus-empty.svg | 9 +
.../Ionicons/src/ios-minus-outline.svg | 16 +
.../Ionicons/src/ios-minus.svg | 10 +
.../Ionicons/src/ios-monitor-outline.svg | 7 +
.../Ionicons/src/ios-monitor.svg | 10 +
.../Ionicons/src/ios-moon-outline.svg | 15 +
.../Ionicons/src/ios-moon.svg | 13 +
.../Ionicons/src/ios-more-outline.svg | 14 +
.../Ionicons/src/ios-more.svg | 11 +
.../Ionicons/src/ios-musical-note.svg | 9 +
.../Ionicons/src/ios-musical-notes.svg | 9 +
.../Ionicons/src/ios-navigate-outline.svg | 12 +
.../Ionicons/src/ios-navigate.svg | 10 +
.../Ionicons/src/ios-nutrition-outline.svg | 29 +
.../Ionicons/src/ios-nutrition.svg | 17 +
.../Ionicons/src/ios-paper-outline.svg | 14 +
.../Ionicons/src/ios-paper.svg | 8 +
.../Ionicons/src/ios-paperplane-outline.svg | 8 +
.../Ionicons/src/ios-paperplane.svg | 10 +
.../Ionicons/src/ios-partlysunny-outline.svg | 33 +
.../Ionicons/src/ios-partlysunny.svg | 28 +
.../Ionicons/src/ios-pause-outline.svg | 10 +
.../Ionicons/src/ios-pause.svg | 10 +
.../Ionicons/src/ios-paw-outline.svg | 43 +
.../bower_components/Ionicons/src/ios-paw.svg | 26 +
.../Ionicons/src/ios-people-outline.svg | 44 +
.../Ionicons/src/ios-people.svg | 29 +
.../Ionicons/src/ios-person-outline.svg | 22 +
.../Ionicons/src/ios-person.svg | 13 +
.../Ionicons/src/ios-personadd-outline.svg | 25 +
.../Ionicons/src/ios-personadd.svg | 16 +
.../Ionicons/src/ios-photos-outline.svg | 10 +
.../Ionicons/src/ios-photos.svg | 10 +
.../Ionicons/src/ios-pie-outline.svg | 16 +
.../bower_components/Ionicons/src/ios-pie.svg | 11 +
.../Ionicons/src/ios-pint-outline.svg | 17 +
.../Ionicons/src/ios-pint.svg | 12 +
.../Ionicons/src/ios-play-outline.svg | 9 +
.../Ionicons/src/ios-play.svg | 9 +
.../Ionicons/src/ios-plus-empty.svg | 9 +
.../Ionicons/src/ios-plus-outline.svg | 18 +
.../Ionicons/src/ios-plus.svg | 10 +
.../Ionicons/src/ios-pricetag-outline.svg | 11 +
.../Ionicons/src/ios-pricetag.svg | 11 +
.../Ionicons/src/ios-pricetags-outline.svg | 12 +
.../Ionicons/src/ios-pricetags.svg | 16 +
.../Ionicons/src/ios-printer-outline.svg | 12 +
.../Ionicons/src/ios-printer.svg | 17 +
.../Ionicons/src/ios-pulse-strong.svg | 12 +
.../Ionicons/src/ios-pulse.svg | 12 +
.../Ionicons/src/ios-rainy-outline.svg | 20 +
.../Ionicons/src/ios-rainy.svg | 17 +
.../Ionicons/src/ios-recording-outline.svg | 15 +
.../Ionicons/src/ios-recording.svg | 14 +
.../Ionicons/src/ios-redo-outline.svg | 11 +
.../Ionicons/src/ios-redo.svg | 10 +
.../Ionicons/src/ios-refresh-empty.svg | 10 +
.../Ionicons/src/ios-refresh-outline.svg | 15 +
.../Ionicons/src/ios-refresh.svg | 11 +
.../Ionicons/src/ios-reload.svg | 11 +
.../src/ios-reverse-camera-outline.svg | 20 +
.../Ionicons/src/ios-reverse-camera.svg | 15 +
.../Ionicons/src/ios-rewind-outline.svg | 8 +
.../Ionicons/src/ios-rewind.svg | 7 +
.../Ionicons/src/ios-rose-outline.svg | 29 +
.../Ionicons/src/ios-rose.svg | 18 +
.../Ionicons/src/ios-search-strong.svg | 10 +
.../Ionicons/src/ios-search.svg | 10 +
.../Ionicons/src/ios-settings-strong.svg | 14 +
.../Ionicons/src/ios-settings.svg | 24 +
.../Ionicons/src/ios-shuffle-strong.svg | 18 +
.../Ionicons/src/ios-shuffle.svg | 20 +
.../Ionicons/src/ios-skipbackward-outline.svg | 8 +
.../Ionicons/src/ios-skipbackward.svg | 7 +
.../Ionicons/src/ios-skipforward-outline.svg | 8 +
.../Ionicons/src/ios-skipforward.svg | 7 +
.../Ionicons/src/ios-snowy.svg | 26 +
.../Ionicons/src/ios-speedometer-outline.svg | 24 +
.../Ionicons/src/ios-speedometer.svg | 28 +
.../Ionicons/src/ios-star-half.svg | 8 +
.../Ionicons/src/ios-star-outline.svg | 8 +
.../Ionicons/src/ios-star.svg | 7 +
.../Ionicons/src/ios-stopwatch-outline.svg | 15 +
.../Ionicons/src/ios-stopwatch.svg | 13 +
.../Ionicons/src/ios-sunny-outline.svg | 27 +
.../Ionicons/src/ios-sunny.svg | 26 +
.../Ionicons/src/ios-telephone-outline.svg | 17 +
.../Ionicons/src/ios-telephone.svg | 12 +
.../Ionicons/src/ios-tennisball-outline.svg | 19 +
.../Ionicons/src/ios-tennisball.svg | 25 +
.../Ionicons/src/ios-thunderstorm-outline.svg | 22 +
.../Ionicons/src/ios-thunderstorm.svg | 17 +
.../Ionicons/src/ios-time-outline.svg | 36 +
.../Ionicons/src/ios-time.svg | 27 +
.../Ionicons/src/ios-timer-outline.svg | 11 +
.../Ionicons/src/ios-timer.svg | 12 +
.../Ionicons/src/ios-toggle-outline.svg | 22 +
.../Ionicons/src/ios-toggle.svg | 16 +
.../Ionicons/src/ios-trash-outline.svg | 17 +
.../Ionicons/src/ios-trash.svg | 12 +
.../Ionicons/src/ios-undo-outline.svg | 11 +
.../Ionicons/src/ios-undo.svg | 10 +
.../Ionicons/src/ios-unlocked-outline.svg | 14 +
.../Ionicons/src/ios-unlocked.svg | 12 +
.../Ionicons/src/ios-upload-outline.svg | 14 +
.../Ionicons/src/ios-upload.svg | 10 +
.../Ionicons/src/ios-videocam-outline.svg | 12 +
.../Ionicons/src/ios-videocam.svg | 11 +
.../Ionicons/src/ios-volume-high.svg | 19 +
.../Ionicons/src/ios-volume-low.svg | 7 +
.../Ionicons/src/ios-wineglass-outline.svg | 15 +
.../Ionicons/src/ios-wineglass.svg | 11 +
.../Ionicons/src/ios-world-outline.svg | 22 +
.../Ionicons/src/ios-world.svg | 29 +
.../bower_components/Ionicons/src/ipad.svg | 10 +
.../bower_components/Ionicons/src/iphone.svg | 13 +
.../bower_components/Ionicons/src/ipod.svg | 13 +
.../bower_components/Ionicons/src/jet.svg | 14 +
.../bower_components/Ionicons/src/key.svg | 14 +
.../bower_components/Ionicons/src/knife.svg | 9 +
.../bower_components/Ionicons/src/laptop.svg | 10 +
.../bower_components/Ionicons/src/leaf.svg | 12 +
.../bower_components/Ionicons/src/levels.svg | 16 +
.../Ionicons/src/lightbulb.svg | 21 +
.../bower_components/Ionicons/src/link.svg | 15 +
.../bower_components/Ionicons/src/load-a.svg | 17 +
.../bower_components/Ionicons/src/load-b.svg | 20 +
.../bower_components/Ionicons/src/load-c.svg | 21 +
.../bower_components/Ionicons/src/load-d.svg | 28 +
.../Ionicons/src/location.svg | 11 +
.../Ionicons/src/lock-combination.svg | 28 +
.../bower_components/Ionicons/src/locked.svg | 11 +
.../bower_components/Ionicons/src/log-in.svg | 14 +
.../bower_components/Ionicons/src/log-out.svg | 17 +
.../bower_components/Ionicons/src/loop.svg | 14 +
.../bower_components/Ionicons/src/magnet.svg | 14 +
.../bower_components/Ionicons/src/male.svg | 10 +
.../bower_components/Ionicons/src/man.svg | 12 +
.../bower_components/Ionicons/src/map.svg | 30 +
.../bower_components/Ionicons/src/medkit.svg | 12 +
.../bower_components/Ionicons/src/merge.svg | 13 +
.../bower_components/Ionicons/src/mic-a.svg | 15 +
.../bower_components/Ionicons/src/mic-b.svg | 17 +
.../bower_components/Ionicons/src/mic-c.svg | 8 +
.../Ionicons/src/minus-circled.svg | 9 +
.../Ionicons/src/minus-round.svg | 8 +
.../bower_components/Ionicons/src/minus.svg | 7 +
.../bower_components/Ionicons/src/model-s.svg | 33 +
.../bower_components/Ionicons/src/monitor.svg | 12 +
.../bower_components/Ionicons/src/more.svg | 12 +
.../bower_components/Ionicons/src/mouse.svg | 24 +
.../Ionicons/src/music-note.svg | 10 +
.../Ionicons/src/navicon-round.svg | 14 +
.../bower_components/Ionicons/src/navicon.svg | 11 +
.../Ionicons/src/navigate.svg | 7 +
.../bower_components/Ionicons/src/network.svg | 12 +
.../Ionicons/src/no-smoking.svg | 33 +
.../bower_components/Ionicons/src/nuclear.svg | 18 +
.../bower_components/Ionicons/src/outlet.svg | 16 +
.../Ionicons/src/paintbrush.svg | 18 +
.../Ionicons/src/paintbucket.svg | 12 +
.../Ionicons/src/paper-airplane.svg | 13 +
.../Ionicons/src/paperclip.svg | 13 +
.../bower_components/Ionicons/src/pause.svg | 12 +
.../Ionicons/src/person-add.svg | 13 +
.../Ionicons/src/person-stalker.svg | 18 +
.../bower_components/Ionicons/src/person.svg | 10 +
.../Ionicons/src/pie-graph.svg | 11 +
.../bower_components/Ionicons/src/pin.svg | 11 +
.../Ionicons/src/pinpoint.svg | 11 +
.../bower_components/Ionicons/src/pizza.svg | 20 +
.../bower_components/Ionicons/src/plane.svg | 10 +
.../bower_components/Ionicons/src/planet.svg | 21 +
.../bower_components/Ionicons/src/play.svg | 8 +
.../Ionicons/src/playstation.svg | 27 +
.../Ionicons/src/plus-circled.svg | 10 +
.../Ionicons/src/plus-round.svg | 9 +
.../bower_components/Ionicons/src/plus.svg | 7 +
.../bower_components/Ionicons/src/podium.svg | 11 +
.../bower_components/Ionicons/src/pound.svg | 11 +
.../bower_components/Ionicons/src/power.svg | 15 +
.../Ionicons/src/pricetag.svg | 13 +
.../Ionicons/src/pricetags.svg | 18 +
.../bower_components/Ionicons/src/printer.svg | 14 +
.../Ionicons/src/pull-request.svg | 16 +
.../Ionicons/src/qr-scanner.svg | 12 +
.../bower_components/Ionicons/src/quote.svg | 16 +
.../Ionicons/src/radio-waves.svg | 25 +
.../bower_components/Ionicons/src/record.svg | 7 +
.../bower_components/Ionicons/src/refresh.svg | 15 +
.../Ionicons/src/reply-all.svg | 12 +
.../bower_components/Ionicons/src/reply.svg | 9 +
.../Ionicons/src/ribbon-a.svg | 14 +
.../Ionicons/src/ribbon-b.svg | 18 +
.../Ionicons/src/sad-outline.svg | 28 +
.../bower_components/Ionicons/src/sad.svg | 20 +
.../Ionicons/src/scissors.svg | 23 +
.../bower_components/Ionicons/src/search.svg | 10 +
.../Ionicons/src/settings.svg | 18 +
.../bower_components/Ionicons/src/share.svg | 11 +
.../bower_components/Ionicons/src/shuffle.svg | 11 +
.../Ionicons/src/skip-backward.svg | 15 +
.../Ionicons/src/skip-forward.svg | 15 +
.../Ionicons/src/social-android-outline.svg | 29 +
.../Ionicons/src/social-android.svg | 22 +
.../Ionicons/src/social-angular-outline.svg | 11 +
.../Ionicons/src/social-angular.svg | 11 +
.../Ionicons/src/social-apple-outline.svg | 20 +
.../Ionicons/src/social-apple.svg | 14 +
.../Ionicons/src/social-bitcoin-outline.svg | 27 +
.../Ionicons/src/social-bitcoin.svg | 14 +
.../Ionicons/src/social-buffer-outline.svg | 24 +
.../Ionicons/src/social-buffer.svg | 18 +
.../Ionicons/src/social-chrome-outline.svg | 17 +
.../Ionicons/src/social-chrome.svg | 22 +
.../Ionicons/src/social-codepen-outline.svg | 26 +
.../Ionicons/src/social-codepen.svg | 26 +
.../Ionicons/src/social-css3-outline.svg | 12 +
.../Ionicons/src/social-css3.svg | 14 +
.../src/social-designernews-outline.svg | 18 +
.../Ionicons/src/social-designernews.svg | 18 +
.../Ionicons/src/social-dribbble-outline.svg | 15 +
.../Ionicons/src/social-dribbble.svg | 26 +
.../Ionicons/src/social-dropbox-outline.svg | 13 +
.../Ionicons/src/social-dropbox.svg | 13 +
.../Ionicons/src/social-euro-outline.svg | 19 +
.../Ionicons/src/social-euro.svg | 12 +
.../Ionicons/src/social-facebook-outline.svg | 9 +
.../Ionicons/src/social-facebook.svg | 8 +
.../src/social-foursquare-outline.svg | 22 +
.../Ionicons/src/social-foursquare.svg | 20 +
.../Ionicons/src/social-freebsd-devil.svg | 22 +
.../Ionicons/src/social-github-outline.svg | 24 +
.../Ionicons/src/social-github.svg | 14 +
.../Ionicons/src/social-google-outline.svg | 19 +
.../Ionicons/src/social-google.svg | 20 +
.../src/social-googleplus-outline.svg | 18 +
.../Ionicons/src/social-googleplus.svg | 17 +
.../src/social-hackernews-outline.svg | 12 +
.../Ionicons/src/social-hackernews.svg | 9 +
.../Ionicons/src/social-html5-outline.svg | 13 +
.../Ionicons/src/social-html5.svg | 9 +
.../Ionicons/src/social-instagram-outline.svg | 12 +
.../Ionicons/src/social-instagram.svg | 18 +
.../src/social-javascript-outline.svg | 27 +
.../Ionicons/src/social-javascript.svg | 17 +
.../Ionicons/src/social-linkedin-outline.svg | 22 +
.../Ionicons/src/social-linkedin.svg | 13 +
.../Ionicons/src/social-markdown.svg | 14 +
.../Ionicons/src/social-nodejs.svg | 26 +
.../Ionicons/src/social-octocat.svg | 28 +
.../Ionicons/src/social-pinterest-outline.svg | 14 +
.../Ionicons/src/social-pinterest.svg | 15 +
.../Ionicons/src/social-python.svg | 21 +
.../Ionicons/src/social-reddit-outline.svg | 26 +
.../Ionicons/src/social-reddit.svg | 18 +
.../Ionicons/src/social-rss-outline.svg | 16 +
.../Ionicons/src/social-rss.svg | 12 +
.../Ionicons/src/social-sass.svg | 35 +
.../Ionicons/src/social-skype-outline.svg | 26 +
.../Ionicons/src/social-skype.svg | 20 +
.../Ionicons/src/social-snapchat-outline.svg | 42 +
.../Ionicons/src/social-snapchat.svg | 31 +
.../Ionicons/src/social-tumblr-outline.svg | 13 +
.../Ionicons/src/social-tumblr.svg | 10 +
.../Ionicons/src/social-tux.svg | 53 +
.../Ionicons/src/social-twitch-outline.svg | 13 +
.../Ionicons/src/social-twitch.svg | 9 +
.../Ionicons/src/social-twitter-outline.svg | 19 +
.../Ionicons/src/social-twitter.svg | 12 +
.../Ionicons/src/social-usd-outline.svg | 44 +
.../Ionicons/src/social-usd.svg | 24 +
.../Ionicons/src/social-vimeo-outline.svg | 23 +
.../Ionicons/src/social-vimeo.svg | 18 +
.../Ionicons/src/social-whatsapp-outline.svg | 25 +
.../Ionicons/src/social-whatsapp.svg | 18 +
.../Ionicons/src/social-windows-outline.svg | 17 +
.../Ionicons/src/social-windows.svg | 17 +
.../Ionicons/src/social-wordpress-outline.svg | 16 +
.../Ionicons/src/social-wordpress.svg | 20 +
.../Ionicons/src/social-yahoo-outline.svg | 10 +
.../Ionicons/src/social-yahoo.svg | 8 +
.../Ionicons/src/social-yen-outline.svg | 9 +
.../Ionicons/src/social-yen.svg | 8 +
.../Ionicons/src/social-youtube-outline.svg | 22 +
.../Ionicons/src/social-youtube.svg | 12 +
.../Ionicons/src/soup-can-outline.svg | 28 +
.../Ionicons/src/soup-can.svg | 16 +
.../Ionicons/src/speakerphone.svg | 19 +
.../Ionicons/src/speedometer.svg | 15 +
.../bower_components/Ionicons/src/spoon.svg | 10 +
.../bower_components/Ionicons/src/star.svg | 7 +
.../Ionicons/src/stats-bars.svg | 12 +
.../bower_components/Ionicons/src/steam.svg | 20 +
.../bower_components/Ionicons/src/stop.svg | 8 +
.../Ionicons/src/thermometer.svg | 11 +
.../Ionicons/src/thumbsdown.svg | 13 +
.../Ionicons/src/thumbsup.svg | 13 +
.../Ionicons/src/toggle-filled.svg | 11 +
.../bower_components/Ionicons/src/toggle.svg | 12 +
.../Ionicons/src/transgender.svg | 12 +
.../bower_components/Ionicons/src/trash-a.svg | 10 +
.../bower_components/Ionicons/src/trash-b.svg | 13 +
.../bower_components/Ionicons/src/trophy.svg | 16 +
.../Ionicons/src/tshirt-outline.svg | 11 +
.../bower_components/Ionicons/src/tshirt.svg | 8 +
.../Ionicons/src/umbrella.svg | 18 +
.../Ionicons/src/university.svg | 11 +
.../Ionicons/src/unlocked.svg | 10 +
.../bower_components/Ionicons/src/upload.svg | 9 +
.../bower_components/Ionicons/src/usb.svg | 22 +
.../Ionicons/src/videocamera.svg | 11 +
.../Ionicons/src/volume-high.svg | 15 +
.../Ionicons/src/volume-low.svg | 11 +
.../Ionicons/src/volume-medium.svg | 13 +
.../Ionicons/src/volume-mute.svg | 14 +
.../bower_components/Ionicons/src/wand.svg | 17 +
.../Ionicons/src/waterdrop.svg | 11 +
.../bower_components/Ionicons/src/wifi.svg | 16 +
.../Ionicons/src/wineglass.svg | 21 +
.../bower_components/Ionicons/src/woman.svg | 13 +
.../bower_components/Ionicons/src/wrench.svg | 11 +
.../bower_components/Ionicons/src/xbox.svg | 21 +
.../bootstrap-datepicker/.bower.json | 23 +
.../bootstrap-datepicker/.editorconfig | 11 +
.../.github/ISSUE_TEMPLATE.md | 13 +
.../.github/PULL_REQUEST_TEMPLATE.md | 7 +
.../bootstrap-datepicker/.travis.yml | 9 +
.../bootstrap-datepicker/CHANGELOG.md | 491 +
.../bootstrap-datepicker/CODE_OF_CONDUCT.md | 74 +
.../bootstrap-datepicker/CONTRIBUTING.md | 41 +
.../bootstrap-datepicker/Gruntfile.js | 261 +
.../bootstrap-datepicker/LICENSE | 202 +
.../bootstrap-datepicker/README.md | 42 +
.../bootstrap-datepicker/bower.json | 12 +
.../bootstrap-datepicker/build/build.less | 69 +
.../bootstrap-datepicker/build/build3.less | 76 +
.../build/build_standalone.less | 64 +
.../build/build_standalone3.less | 55 +
.../bootstrap-datepicker/composer.json | 39 +
.../dist/css/bootstrap-datepicker.css | 477 +
.../dist/css/bootstrap-datepicker.css.map | 1 +
.../dist/css/bootstrap-datepicker.min.css | 7 +
.../css/bootstrap-datepicker.standalone.css | 510 +
.../bootstrap-datepicker.standalone.css.map | 1 +
.../bootstrap-datepicker.standalone.min.css | 7 +
.../dist/css/bootstrap-datepicker3.css | 683 +
.../dist/css/bootstrap-datepicker3.css.map | 1 +
.../dist/css/bootstrap-datepicker3.min.css | 7 +
.../css/bootstrap-datepicker3.standalone.css | 712 +
.../bootstrap-datepicker3.standalone.css.map | 1 +
.../bootstrap-datepicker3.standalone.min.css | 7 +
.../dist/js/bootstrap-datepicker.js | 2035 +
.../dist/js/bootstrap-datepicker.min.js | 8 +
.../locales/bootstrap-datepicker-en-CA.min.js | 1 +
.../locales/bootstrap-datepicker.ar-tn.min.js | 1 +
.../locales/bootstrap-datepicker.ar.min.js | 1 +
.../locales/bootstrap-datepicker.az.min.js | 1 +
.../locales/bootstrap-datepicker.bg.min.js | 1 +
.../locales/bootstrap-datepicker.bn.min.js | 1 +
.../locales/bootstrap-datepicker.br.min.js | 1 +
.../locales/bootstrap-datepicker.bs.min.js | 1 +
.../locales/bootstrap-datepicker.ca.min.js | 1 +
.../locales/bootstrap-datepicker.cs.min.js | 1 +
.../locales/bootstrap-datepicker.cy.min.js | 1 +
.../locales/bootstrap-datepicker.da.min.js | 1 +
.../locales/bootstrap-datepicker.de.min.js | 1 +
.../locales/bootstrap-datepicker.el.min.js | 1 +
.../locales/bootstrap-datepicker.en-AU.min.js | 1 +
.../locales/bootstrap-datepicker.en-CA.min.js | 1 +
.../locales/bootstrap-datepicker.en-GB.min.js | 1 +
.../locales/bootstrap-datepicker.en-IE.min.js | 1 +
.../locales/bootstrap-datepicker.en-NZ.min.js | 1 +
.../locales/bootstrap-datepicker.en-ZA.min.js | 1 +
.../locales/bootstrap-datepicker.eo.min.js | 1 +
.../locales/bootstrap-datepicker.es.min.js | 1 +
.../locales/bootstrap-datepicker.et.min.js | 1 +
.../locales/bootstrap-datepicker.eu.min.js | 1 +
.../locales/bootstrap-datepicker.fa.min.js | 1 +
.../locales/bootstrap-datepicker.fi.min.js | 1 +
.../locales/bootstrap-datepicker.fo.min.js | 1 +
.../locales/bootstrap-datepicker.fr-CH.min.js | 1 +
.../locales/bootstrap-datepicker.fr.min.js | 1 +
.../locales/bootstrap-datepicker.gl.min.js | 1 +
.../locales/bootstrap-datepicker.he.min.js | 1 +
.../locales/bootstrap-datepicker.hi.min.js | 1 +
.../locales/bootstrap-datepicker.hr.min.js | 1 +
.../locales/bootstrap-datepicker.hu.min.js | 1 +
.../locales/bootstrap-datepicker.hy.min.js | 1 +
.../locales/bootstrap-datepicker.id.min.js | 1 +
.../locales/bootstrap-datepicker.is.min.js | 1 +
.../locales/bootstrap-datepicker.it-CH.min.js | 1 +
.../locales/bootstrap-datepicker.it.min.js | 1 +
.../locales/bootstrap-datepicker.ja.min.js | 1 +
.../locales/bootstrap-datepicker.ka.min.js | 1 +
.../locales/bootstrap-datepicker.kh.min.js | 1 +
.../locales/bootstrap-datepicker.kk.min.js | 1 +
.../locales/bootstrap-datepicker.km.min.js | 1 +
.../locales/bootstrap-datepicker.ko.min.js | 1 +
.../locales/bootstrap-datepicker.kr.min.js | 1 +
.../locales/bootstrap-datepicker.lt.min.js | 1 +
.../locales/bootstrap-datepicker.lv.min.js | 1 +
.../locales/bootstrap-datepicker.me.min.js | 1 +
.../locales/bootstrap-datepicker.mk.min.js | 1 +
.../locales/bootstrap-datepicker.mn.min.js | 1 +
.../locales/bootstrap-datepicker.ms.min.js | 1 +
.../locales/bootstrap-datepicker.nl-BE.min.js | 1 +
.../locales/bootstrap-datepicker.nl.min.js | 1 +
.../locales/bootstrap-datepicker.no.min.js | 1 +
.../locales/bootstrap-datepicker.oc.min.js | 1 +
.../locales/bootstrap-datepicker.pl.min.js | 1 +
.../locales/bootstrap-datepicker.pt-BR.min.js | 1 +
.../locales/bootstrap-datepicker.pt.min.js | 1 +
.../locales/bootstrap-datepicker.ro.min.js | 1 +
.../bootstrap-datepicker.rs-latin.min.js | 1 +
.../locales/bootstrap-datepicker.rs.min.js | 1 +
.../locales/bootstrap-datepicker.ru.min.js | 1 +
.../locales/bootstrap-datepicker.si.min.js | 1 +
.../locales/bootstrap-datepicker.sk.min.js | 1 +
.../locales/bootstrap-datepicker.sl.min.js | 1 +
.../locales/bootstrap-datepicker.sq.min.js | 1 +
.../bootstrap-datepicker.sr-latin.min.js | 1 +
.../locales/bootstrap-datepicker.sr.min.js | 1 +
.../locales/bootstrap-datepicker.sv.min.js | 1 +
.../locales/bootstrap-datepicker.sw.min.js | 1 +
.../locales/bootstrap-datepicker.ta.min.js | 1 +
.../locales/bootstrap-datepicker.tg.min.js | 1 +
.../locales/bootstrap-datepicker.th.min.js | 1 +
.../locales/bootstrap-datepicker.tk.min.js | 1 +
.../locales/bootstrap-datepicker.tr.min.js | 1 +
.../locales/bootstrap-datepicker.uk.min.js | 1 +
.../bootstrap-datepicker.uz-cyrl.min.js | 1 +
.../bootstrap-datepicker.uz-latn.min.js | 1 +
.../locales/bootstrap-datepicker.vi.min.js | 1 +
.../locales/bootstrap-datepicker.zh-CN.min.js | 1 +
.../locales/bootstrap-datepicker.zh-TW.min.js | 1 +
.../bootstrap-datepicker/docs/Makefile | 153 +
.../bootstrap-datepicker/docs/README.md | 20 +
.../docs/_screenshots/demo_head.html | 36 +
.../docs/_screenshots/markup_component.html | 26 +
.../docs/_screenshots/markup_daterange.html | 32 +
.../docs/_screenshots/markup_inline.html | 15 +
.../docs/_screenshots/markup_input.html | 21 +
.../_screenshots/option_calendarweeks.html | 25 +
.../docs/_screenshots/option_clearbtn.html | 22 +
.../option_daysofweekdisabled.html | 22 +
.../docs/_screenshots/option_enddate.html | 22 +
.../docs/_screenshots/option_language.html | 36 +
.../docs/_screenshots/option_multidate.html | 27 +
.../docs/_screenshots/option_startdate.html | 22 +
.../docs/_screenshots/option_todaybtn.html | 21 +
.../_screenshots/option_todayhighlight.html | 47 +
.../docs/_screenshots/option_weekstart.html | 25 +
.../docs/_screenshots/script/common.css | 9 +
.../docs/_screenshots/script/common.js | 2 +
.../docs/_screenshots/script/debug.js | 21 +
.../_screenshots/script/html-imports.min.js | 30 +
.../docs/_screenshots/script/screenshot.js | 69 +
.../docs/_static/screenshots/demo_head.png | Bin 0 -> 48880 bytes
.../_static/screenshots/markup_component.png | Bin 0 -> 18320 bytes
.../_static/screenshots/markup_daterange.png | Bin 0 -> 23879 bytes
.../_static/screenshots/markup_inline.png | Bin 0 -> 16089 bytes
.../docs/_static/screenshots/markup_input.png | Bin 0 -> 17449 bytes
.../screenshots/option_calendarweeks.png | Bin 0 -> 29735 bytes
.../_static/screenshots/option_clearbtn.png | Bin 0 -> 18208 bytes
.../screenshots/option_daysofweekdisabled.png | Bin 0 -> 17374 bytes
.../_static/screenshots/option_enddate.png | Bin 0 -> 17100 bytes
.../_static/screenshots/option_language.png | Bin 0 -> 59995 bytes
.../_static/screenshots/option_multidate.png | Bin 0 -> 37891 bytes
.../_static/screenshots/option_startdate.png | Bin 0 -> 17346 bytes
.../_static/screenshots/option_todaybtn.png | Bin 0 -> 18433 bytes
.../screenshots/option_todayhighlight.png | Bin 0 -> 23234 bytes
.../_static/screenshots/option_weekstart.png | Bin 0 -> 31564 bytes
.../bootstrap-datepicker/docs/conf.py | 249 +
.../bootstrap-datepicker/docs/events.rst | 63 +
.../bootstrap-datepicker/docs/i18n.rst | 36 +
.../bootstrap-datepicker/docs/index.rst | 127 +
.../bootstrap-datepicker/docs/keyboard.rst | 27 +
.../bootstrap-datepicker/docs/make.bat | 190 +
.../bootstrap-datepicker/docs/markup.rst | 89 +
.../bootstrap-datepicker/docs/methods.rst | 226 +
.../bootstrap-datepicker/docs/options.rst | 567 +
.../docs/requirements.txt | 1 +
.../bootstrap-datepicker/grunt/.jshintrc | 7 +
.../bootstrap-datepicker/js/.jscsrc | 22 +
.../bootstrap-datepicker/js/.jshintrc | 25 +
.../js/bootstrap-datepicker.js | 2048 +
.../js/locales/bootstrap-datepicker-en-CA.js | 22 +
.../js/locales/bootstrap-datepicker.ar-tn.js | 15 +
.../js/locales/bootstrap-datepicker.ar.js | 15 +
.../js/locales/bootstrap-datepicker.az.js | 12 +
.../js/locales/bootstrap-datepicker.bg.js | 14 +
.../js/locales/bootstrap-datepicker.bn.js | 19 +
.../js/locales/bootstrap-datepicker.br.js | 18 +
.../js/locales/bootstrap-datepicker.bs.js | 15 +
.../js/locales/bootstrap-datepicker.ca.js | 18 +
.../js/locales/bootstrap-datepicker.cs.js | 19 +
.../js/locales/bootstrap-datepicker.cy.js | 14 +
.../js/locales/bootstrap-datepicker.da.js | 19 +
.../js/locales/bootstrap-datepicker.de.js | 18 +
.../js/locales/bootstrap-datepicker.el.js | 16 +
.../js/locales/bootstrap-datepicker.en-AU.js | 18 +
.../js/locales/bootstrap-datepicker.en-CA.js | 18 +
.../js/locales/bootstrap-datepicker.en-GB.js | 18 +
.../js/locales/bootstrap-datepicker.en-IE.js | 17 +
.../js/locales/bootstrap-datepicker.en-NZ.js | 17 +
.../js/locales/bootstrap-datepicker.en-ZA.js | 17 +
.../js/locales/bootstrap-datepicker.eo.js | 17 +
.../js/locales/bootstrap-datepicker.es.js | 18 +
.../js/locales/bootstrap-datepicker.et.js | 18 +
.../js/locales/bootstrap-datepicker.eu.js | 19 +
.../js/locales/bootstrap-datepicker.fa.js | 17 +
.../js/locales/bootstrap-datepicker.fi.js | 17 +
.../js/locales/bootstrap-datepicker.fo.js | 15 +
.../js/locales/bootstrap-datepicker.fr-CH.js | 21 +
.../js/locales/bootstrap-datepicker.fr.js | 18 +
.../js/locales/bootstrap-datepicker.gl.js | 13 +
.../js/locales/bootstrap-datepicker.he.js | 15 +
.../js/locales/bootstrap-datepicker.hi.js | 18 +
.../js/locales/bootstrap-datepicker.hr.js | 13 +
.../js/locales/bootstrap-datepicker.hu.js | 18 +
.../js/locales/bootstrap-datepicker.hy.js | 18 +
.../js/locales/bootstrap-datepicker.id.js | 15 +
.../js/locales/bootstrap-datepicker.is.js | 14 +
.../js/locales/bootstrap-datepicker.it-CH.js | 20 +
.../js/locales/bootstrap-datepicker.it.js | 18 +
.../js/locales/bootstrap-datepicker.ja.js | 17 +
.../js/locales/bootstrap-datepicker.ka.js | 17 +
.../js/locales/bootstrap-datepicker.kh.js | 21 +
.../js/locales/bootstrap-datepicker.kk.js | 15 +
.../js/locales/bootstrap-datepicker.km.js | 15 +
.../js/locales/bootstrap-datepicker.ko.js | 18 +
.../js/locales/bootstrap-datepicker.kr.js | 19 +
.../js/locales/bootstrap-datepicker.lt.js | 19 +
.../js/locales/bootstrap-datepicker.lv.js | 18 +
.../js/locales/bootstrap-datepicker.me.js | 17 +
.../js/locales/bootstrap-datepicker.mk.js | 15 +
.../js/locales/bootstrap-datepicker.mn.js | 17 +
.../js/locales/bootstrap-datepicker.ms.js | 15 +
.../js/locales/bootstrap-datepicker.nl-BE.js | 18 +
.../js/locales/bootstrap-datepicker.nl.js | 18 +
.../js/locales/bootstrap-datepicker.no.js | 18 +
.../js/locales/bootstrap-datepicker.oc.js | 17 +
.../js/locales/bootstrap-datepicker.pl.js | 17 +
.../js/locales/bootstrap-datepicker.pt-BR.js | 17 +
.../js/locales/bootstrap-datepicker.pt.js | 18 +
.../js/locales/bootstrap-datepicker.ro.js | 17 +
.../locales/bootstrap-datepicker.rs-latin.js | 20 +
.../js/locales/bootstrap-datepicker.rs.js | 20 +
.../js/locales/bootstrap-datepicker.ru.js | 18 +
.../js/locales/bootstrap-datepicker.si.js | 18 +
.../js/locales/bootstrap-datepicker.sk.js | 18 +
.../js/locales/bootstrap-datepicker.sl.js | 15 +
.../js/locales/bootstrap-datepicker.sq.js | 15 +
.../locales/bootstrap-datepicker.sr-latin.js | 16 +
.../js/locales/bootstrap-datepicker.sr.js | 16 +
.../js/locales/bootstrap-datepicker.sv.js | 17 +
.../js/locales/bootstrap-datepicker.sw.js | 15 +
.../js/locales/bootstrap-datepicker.ta.js | 18 +
.../js/locales/bootstrap-datepicker.tg.js | 19 +
.../js/locales/bootstrap-datepicker.th.js | 14 +
.../js/locales/bootstrap-datepicker.tk.js | 18 +
.../js/locales/bootstrap-datepicker.tr.js | 18 +
.../js/locales/bootstrap-datepicker.uk.js | 17 +
.../locales/bootstrap-datepicker.uz-cyrl.js | 18 +
.../locales/bootstrap-datepicker.uz-latn.js | 18 +
.../js/locales/bootstrap-datepicker.vi.js | 16 +
.../js/locales/bootstrap-datepicker.zh-CN.js | 18 +
.../js/locales/bootstrap-datepicker.zh-TW.js | 18 +
.../bootstrap-datepicker/less/.csslintrc | 19 +
.../bootstrap-datepicker/less/datepicker.less | 242 +
.../less/datepicker3.less | 257 +
.../bootstrap-datepicker/package.json | 48 +
.../bootstrap-datepicker/tests/README.md | 30 +
.../tests/assets/coverage.js | 48 +
.../tests/assets/jquery-1.7.1.min.js | 4 +
.../bootstrap-datepicker/tests/assets/mock.js | 49 +
.../tests/assets/qunit-logging.js | 29 +
.../tests/assets/qunit.css | 235 +
.../tests/assets/qunit.js | 1669 +
.../tests/assets/utils.js | 21 +
.../tests/suites/calendar-weeks.js | 48 +
.../tests/suites/component.js | 267 +
.../tests/suites/data-api.js | 114 +
.../tests/suites/events.js | 507 +
.../tests/suites/formats.js | 314 +
.../tests/suites/inline.js | 28 +
.../tests/suites/keyboard_navigation/2011.js | 228 +
.../tests/suites/keyboard_navigation/2012.js | 483 +
.../tests/suites/keyboard_navigation/all.js | 62 +
.../tests/suites/methods.js | 188 +
.../tests/suites/methods_jquery.js | 26 +
.../tests/suites/mouse_navigation/2011.js | 66 +
.../tests/suites/mouse_navigation/2012.js | 266 +
.../tests/suites/mouse_navigation/all.js | 33 +
.../tests/suites/noconflict.js | 20 +
.../tests/suites/options.js | 1802 +
.../tests/suites/timezone.js | 24 +
.../tests/suites/touch_navigation/all.js | 27 +
.../bootstrap-datepicker/tests/tests.html | 55 +
.../bootstrap-datepicker/tests/timezone.html | 36 +
.../bootstrap-datepicker/yarn.lock | 1963 +
.../bootstrap-table/bootstrap-table.js | 2682 ++
.../bootstrap-table/bootstrap-table.min.css | 1 +
.../bootstrap-table/bootstrap-table.min.js | 33 +
.../locale/bootstrap-table-zh-CN.min.js | 7 +
.../bootstrap-timepicker/.bower.json | 45 +
.../bootstrap-timepicker/CHANGELOG.md | 56 +
.../bootstrap-timepicker/LICENSE | 20 +
.../bootstrap-timepicker/README.md | 73 +
.../bootstrap-timepicker/bower.json | 35 +
.../bootstrap-timepicker/css/timepicker.less | 172 +
.../js/bootstrap-timepicker.js | 1177 +
.../bower_components/bootstrap/.bower.json | 44 +
.../bower_components/bootstrap/CHANGELOG.md | 5 +
.../bower_components/bootstrap/Gemfile | 8 +
.../bower_components/bootstrap/Gemfile.lock | 74 +
.../bower_components/bootstrap/Gruntfile.js | 430 +
.../bootstrap/ISSUE_TEMPLATE.md | 22 +
.../bower_components/bootstrap/LICENSE | 21 +
.../bower_components/bootstrap/README.md | 149 +
.../bower_components/bootstrap/bower.json | 34 +
.../bootstrap/dist/css/bootstrap-theme.css | 587 +
.../dist/css/bootstrap-theme.css.map | 1 +
.../dist/css/bootstrap-theme.min.css | 6 +
.../dist/css/bootstrap-theme.min.css.map | 1 +
.../bootstrap/dist/css/bootstrap.css | 6834 +++
.../bootstrap/dist/css/bootstrap.css.map | 1 +
.../bootstrap/dist/css/bootstrap.min.css | 6 +
.../bootstrap/dist/css/bootstrap.min.css.map | 1 +
.../bootstrap/dist/css/login.min.css | 100 +
.../bootstrap/dist/css/style.min.css | 1 +
.../fonts/glyphicons-halflings-regular.eot | Bin 0 -> 20127 bytes
.../fonts/glyphicons-halflings-regular.svg | 288 +
.../fonts/glyphicons-halflings-regular.ttf | Bin 0 -> 45404 bytes
.../fonts/glyphicons-halflings-regular.woff | Bin 0 -> 23424 bytes
.../fonts/glyphicons-halflings-regular.woff2 | Bin 0 -> 18028 bytes
.../bootstrap/dist/js/bootstrap.js | 2580 +
.../bootstrap/dist/js/bootstrap.min.js | 6 +
.../bower_components/bootstrap/dist/js/npm.js | 13 +
.../fonts/glyphicons-halflings-regular.eot | Bin 0 -> 20127 bytes
.../fonts/glyphicons-halflings-regular.svg | 288 +
.../fonts/glyphicons-halflings-regular.ttf | Bin 0 -> 45404 bytes
.../fonts/glyphicons-halflings-regular.woff | Bin 0 -> 23424 bytes
.../fonts/glyphicons-halflings-regular.woff2 | Bin 0 -> 18028 bytes
.../bootstrap/grunt/.jshintrc | 7 +
.../bootstrap/grunt/.stylelintrc | 289 +
.../bootstrap/grunt/browsers.js | 86 +
.../bootstrap/grunt/bs-commonjs-generator.js | 30 +
.../grunt/bs-glyphicons-data-generator.js | 42 +
.../bootstrap/grunt/bs-lessdoc-parser.js | 237 +
.../bootstrap/grunt/bs-raw-files-generator.js | 44 +
.../bootstrap/grunt/change-version.js | 109 +
.../bootstrap/grunt/configBridge.json | 54 +
.../bootstrap/grunt/generate-sri.js | 62 +
.../bootstrap/grunt/karma.conf.js | 79 +
.../bower_components/bootstrap/js/.jscsrc | 42 +
.../bower_components/bootstrap/js/.jshintrc | 15 +
.../bower_components/bootstrap/js/affix.js | 164 +
.../bower_components/bootstrap/js/alert.js | 95 +
.../bower_components/bootstrap/js/button.js | 125 +
.../bower_components/bootstrap/js/carousel.js | 246 +
.../bower_components/bootstrap/js/collapse.js | 212 +
.../bower_components/bootstrap/js/dropdown.js | 165 +
.../bower_components/bootstrap/js/modal.js | 358 +
.../bower_components/bootstrap/js/popover.js | 123 +
.../bootstrap/js/scrollspy.js | 172 +
.../bower_components/bootstrap/js/tab.js | 155 +
.../bower_components/bootstrap/js/tooltip.js | 677 +
.../bootstrap/js/transition.js | 59 +
.../bootstrap/less/alerts.less | 73 +
.../bootstrap/less/badges.less | 66 +
.../bootstrap/less/bootstrap.less | 56 +
.../bootstrap/less/breadcrumbs.less | 26 +
.../bootstrap/less/button-groups.less | 246 +
.../bootstrap/less/buttons.less | 168 +
.../bootstrap/less/carousel.less | 273 +
.../bootstrap/less/close.less | 37 +
.../bower_components/bootstrap/less/code.less | 69 +
.../bootstrap/less/component-animations.less | 36 +
.../bootstrap/less/dropdowns.less | 213 +
.../bootstrap/less/forms.less | 605 +
.../bootstrap/less/glyphicons.less | 307 +
.../bower_components/bootstrap/less/grid.less | 94 +
.../bootstrap/less/input-groups.less | 173 +
.../bootstrap/less/jumbotron.less | 54 +
.../bootstrap/less/labels.less | 64 +
.../bootstrap/less/list-group.less | 130 +
.../bootstrap/less/media.less | 66 +
.../bootstrap/less/mixins.less | 40 +
.../bootstrap/less/mixins/alerts.less | 15 +
.../less/mixins/background-variant.less | 9 +
.../bootstrap/less/mixins/border-radius.less | 18 +
.../bootstrap/less/mixins/buttons.less | 61 +
.../bootstrap/less/mixins/center-block.less | 7 +
.../bootstrap/less/mixins/clearfix.less | 22 +
.../bootstrap/less/mixins/forms.less | 85 +
.../bootstrap/less/mixins/gradients.less | 59 +
.../bootstrap/less/mixins/grid-framework.less | 91 +
.../bootstrap/less/mixins/grid.less | 122 +
.../bootstrap/less/mixins/hide-text.less | 23 +
.../bootstrap/less/mixins/image.less | 30 +
.../bootstrap/less/mixins/labels.less | 12 +
.../bootstrap/less/mixins/list-group.less | 30 +
.../bootstrap/less/mixins/nav-divider.less | 10 +
.../less/mixins/nav-vertical-align.less | 9 +
.../bootstrap/less/mixins/opacity.less | 7 +
.../bootstrap/less/mixins/pagination.less | 24 +
.../bootstrap/less/mixins/panels.less | 24 +
.../bootstrap/less/mixins/progress-bar.less | 10 +
.../bootstrap/less/mixins/reset-filter.less | 8 +
.../bootstrap/less/mixins/reset-text.less | 18 +
.../bootstrap/less/mixins/resize.less | 6 +
.../less/mixins/responsive-visibility.less | 13 +
.../bootstrap/less/mixins/size.less | 10 +
.../bootstrap/less/mixins/tab-focus.less | 9 +
.../bootstrap/less/mixins/table-row.less | 28 +
.../bootstrap/less/mixins/text-emphasis.less | 9 +
.../bootstrap/less/mixins/text-overflow.less | 8 +
.../less/mixins/vendor-prefixes.less | 229 +
.../bootstrap/less/modals.less | 150 +
.../bootstrap/less/navbar.less | 656 +
.../bower_components/bootstrap/less/navs.less | 244 +
.../bootstrap/less/normalize.less | 429 +
.../bootstrap/less/pager.less | 54 +
.../bootstrap/less/pagination.less | 86 +
.../bootstrap/less/panels.less | 273 +
.../bootstrap/less/popovers.less | 126 +
.../bootstrap/less/print.less | 101 +
.../bootstrap/less/progress-bars.less | 89 +
.../bootstrap/less/responsive-embed.less | 35 +
.../bootstrap/less/responsive-utilities.less | 196 +
.../bootstrap/less/scaffolding.less | 161 +
.../bootstrap/less/tables.less | 236 +
.../bootstrap/less/theme.less | 297 +
.../bootstrap/less/thumbnails.less | 38 +
.../bootstrap/less/tooltip.less | 112 +
.../bower_components/bootstrap/less/type.less | 304 +
.../bootstrap/less/utilities.less | 57 +
.../bootstrap/less/variables.less | 871 +
.../bootstrap/less/wells.less | 29 +
.../bootstrap/nuget/bootstrap.less.nuspec | 31 +
.../bootstrap/nuget/bootstrap.nuspec | 31 +
.../bootstrap/package-lock.json | 8870 ++++
.../bower_components/bootstrap/package.js | 32 +
.../bower_components/bootstrap/package.json | 101 +
.../bower_components/font-awesome/.bower.json | 36 +
.../bower_components/font-awesome/.npmignore | 42 +
.../font-awesome/HELP-US-OUT.txt | 7 +
.../bower_components/font-awesome/bower.json | 22 +
.../font-awesome/css/font-awesome.css | 2337 +
.../font-awesome/css/font-awesome.css.map | 7 +
.../font-awesome/css/font-awesome.min.css | 4 +
.../font-awesome/fonts/FontAwesome.otf | Bin 0 -> 134808 bytes
.../fonts/fontawesome-webfont.eot | Bin 0 -> 165742 bytes
.../fonts/fontawesome-webfont.svg | 2671 ++
.../fonts/fontawesome-webfont.ttf | Bin 0 -> 165548 bytes
.../fonts/fontawesome-webfont.woff | Bin 0 -> 98024 bytes
.../fonts/fontawesome-webfont.woff2 | Bin 0 -> 77160 bytes
.../font-awesome/less/animated.less | 34 +
.../font-awesome/less/bordered-pulled.less | 25 +
.../font-awesome/less/core.less | 12 +
.../font-awesome/less/fixed-width.less | 6 +
.../font-awesome/less/font-awesome.less | 18 +
.../font-awesome/less/icons.less | 789 +
.../font-awesome/less/larger.less | 13 +
.../font-awesome/less/list.less | 19 +
.../font-awesome/less/mixins.less | 60 +
.../font-awesome/less/path.less | 15 +
.../font-awesome/less/rotated-flipped.less | 20 +
.../font-awesome/less/screen-reader.less | 5 +
.../font-awesome/less/stacked.less | 20 +
.../font-awesome/less/variables.less | 800 +
.../font-awesome/scss/_animated.scss | 34 +
.../font-awesome/scss/_bordered-pulled.scss | 25 +
.../font-awesome/scss/_core.scss | 12 +
.../font-awesome/scss/_fixed-width.scss | 6 +
.../font-awesome/scss/_icons.scss | 789 +
.../font-awesome/scss/_larger.scss | 13 +
.../font-awesome/scss/_list.scss | 19 +
.../font-awesome/scss/_mixins.scss | 60 +
.../font-awesome/scss/_path.scss | 15 +
.../font-awesome/scss/_rotated-flipped.scss | 20 +
.../font-awesome/scss/_screen-reader.scss | 5 +
.../font-awesome/scss/_stacked.scss | 20 +
.../font-awesome/scss/_variables.scss | 800 +
.../font-awesome/scss/font-awesome.scss | 18 +
.../bower_components/select2/.bower.json | 24 +
.../bower_components/select2/.editorconfig | 6 +
.../select2/.github/CONTRIBUTING.md | 203 +
.../select2/.github/ISSUE_TEMPLATE.md | 20 +
.../select2/.github/PULL_REQUEST_TEMPLATE.md | 13 +
.../bower_components/select2/.jshintignore | 4 +
.../bower_components/select2/.jshintrc | 25 +
.../bower_components/select2/.travis.yml | 22 +
.../bower_components/select2/CHANGELOG.md | 272 +
.../bower_components/select2/Gruntfile.js | 380 +
.../bower_components/select2/LICENSE.md | 21 +
.../bower_components/select2/README.md | 123 +
.../bower_components/select2/bower.json | 13 +
.../bower_components/select2/component.json | 19 +
.../bower_components/select2/composer.json | 25 +
.../select2/dist/css/select2.css | 484 +
.../select2/dist/css/select2.min.css | 1 +
.../select2/dist/js/i18n/af.js | 3 +
.../select2/dist/js/i18n/ar.js | 3 +
.../select2/dist/js/i18n/az.js | 3 +
.../select2/dist/js/i18n/bg.js | 3 +
.../select2/dist/js/i18n/bs.js | 3 +
.../select2/dist/js/i18n/ca.js | 3 +
.../select2/dist/js/i18n/cs.js | 3 +
.../select2/dist/js/i18n/da.js | 3 +
.../select2/dist/js/i18n/de.js | 3 +
.../select2/dist/js/i18n/dsb.js | 3 +
.../select2/dist/js/i18n/el.js | 3 +
.../select2/dist/js/i18n/en.js | 3 +
.../select2/dist/js/i18n/es.js | 3 +
.../select2/dist/js/i18n/et.js | 3 +
.../select2/dist/js/i18n/eu.js | 3 +
.../select2/dist/js/i18n/fa.js | 3 +
.../select2/dist/js/i18n/fi.js | 3 +
.../select2/dist/js/i18n/fr.js | 3 +
.../select2/dist/js/i18n/gl.js | 3 +
.../select2/dist/js/i18n/he.js | 3 +
.../select2/dist/js/i18n/hi.js | 3 +
.../select2/dist/js/i18n/hr.js | 3 +
.../select2/dist/js/i18n/hsb.js | 3 +
.../select2/dist/js/i18n/hu.js | 3 +
.../select2/dist/js/i18n/hy.js | 3 +
.../select2/dist/js/i18n/id.js | 3 +
.../select2/dist/js/i18n/is.js | 3 +
.../select2/dist/js/i18n/it.js | 3 +
.../select2/dist/js/i18n/ja.js | 3 +
.../select2/dist/js/i18n/km.js | 3 +
.../select2/dist/js/i18n/ko.js | 3 +
.../select2/dist/js/i18n/lt.js | 3 +
.../select2/dist/js/i18n/lv.js | 3 +
.../select2/dist/js/i18n/mk.js | 3 +
.../select2/dist/js/i18n/ms.js | 3 +
.../select2/dist/js/i18n/nb.js | 3 +
.../select2/dist/js/i18n/nl.js | 3 +
.../select2/dist/js/i18n/pl.js | 3 +
.../select2/dist/js/i18n/ps.js | 3 +
.../select2/dist/js/i18n/pt-BR.js | 3 +
.../select2/dist/js/i18n/pt.js | 3 +
.../select2/dist/js/i18n/ro.js | 3 +
.../select2/dist/js/i18n/ru.js | 3 +
.../select2/dist/js/i18n/sk.js | 3 +
.../select2/dist/js/i18n/sl.js | 3 +
.../select2/dist/js/i18n/sr-Cyrl.js | 3 +
.../select2/dist/js/i18n/sr.js | 3 +
.../select2/dist/js/i18n/sv.js | 3 +
.../select2/dist/js/i18n/th.js | 3 +
.../select2/dist/js/i18n/tr.js | 3 +
.../select2/dist/js/i18n/uk.js | 3 +
.../select2/dist/js/i18n/vi.js | 3 +
.../select2/dist/js/i18n/zh-CN.js | 3 +
.../select2/dist/js/i18n/zh-TW.js | 3 +
.../select2/dist/js/select2.full.js | 6457 +++
.../select2/dist/js/select2.full.min.js | 1 +
.../select2/dist/js/select2.js | 5746 +++
.../select2/dist/js/select2.min.js | 1 +
.../bower_components/select2/docs/README.md | 1 +
.../select2/docs/announcements-4.0.html | 12 +
.../select2/docs/community.html | 12 +
.../select2/docs/examples.html | 12 +
.../bower_components/select2/docs/index.html | 12 +
.../select2/docs/options-old.html | 12 +
.../select2/docs/options.html | 12 +
.../bower_components/select2/package.json | 73 +
.../select2/select2.jquery.json | 32 +
.../select2/src/js/banner.end.js | 6 +
.../select2/src/js/banner.start.js | 6 +
.../select2/src/js/jquery.mousewheel.shim.js | 6 +
.../select2/src/js/jquery.select2.js | 57 +
.../select2/src/js/jquery.shim.js | 14 +
.../src/js/select2/compat/containerCss.js | 56 +
.../src/js/select2/compat/dropdownCss.js | 56 +
.../src/js/select2/compat/initSelection.js | 42 +
.../src/js/select2/compat/inputData.js | 127 +
.../select2/src/js/select2/compat/matcher.js | 42 +
.../select2/src/js/select2/compat/query.js | 26 +
.../select2/src/js/select2/compat/utils.js | 43 +
.../select2/src/js/select2/core.js | 612 +
.../select2/src/js/select2/data/ajax.js | 109 +
.../select2/src/js/select2/data/array.js | 79 +
.../select2/src/js/select2/data/base.js | 40 +
.../src/js/select2/data/maximumInputLength.js | 31 +
.../js/select2/data/maximumSelectionLength.js | 31 +
.../src/js/select2/data/minimumInputLength.js | 30 +
.../select2/src/js/select2/data/select.js | 285 +
.../select2/src/js/select2/data/tags.js | 128 +
.../select2/src/js/select2/data/tokenizer.js | 116 +
.../select2/src/js/select2/defaults.js | 396 +
.../select2/src/js/select2/diacritics.js | 847 +
.../select2/src/js/select2/dropdown.js | 42 +
.../src/js/select2/dropdown/attachBody.js | 222 +
.../js/select2/dropdown/attachContainer.js | 18 +
.../src/js/select2/dropdown/closeOnSelect.js | 35 +
.../js/select2/dropdown/hidePlaceholder.js | 42 +
.../src/js/select2/dropdown/infiniteScroll.js | 89 +
.../dropdown/minimumResultsForSearch.js | 39 +
.../select2/src/js/select2/dropdown/search.js | 101 +
.../src/js/select2/dropdown/selectOnClose.js | 50 +
.../js/select2/dropdown/stopPropagation.js | 38 +
.../select2/src/js/select2/i18n/af.js | 44 +
.../select2/src/js/select2/i18n/ar.js | 30 +
.../select2/src/js/select2/i18n/az.js | 27 +
.../select2/src/js/select2/i18n/bg.js | 47 +
.../select2/src/js/select2/i18n/bs.js | 55 +
.../select2/src/js/select2/i18n/ca.js | 52 +
.../select2/src/js/select2/i18n/cs.js | 61 +
.../select2/src/js/select2/i18n/da.js | 36 +
.../select2/src/js/select2/i18n/de.js | 40 +
.../select2/src/js/select2/i18n/dsb.js | 48 +
.../select2/src/js/select2/i18n/el.js | 52 +
.../select2/src/js/select2/i18n/en.js | 44 +
.../select2/src/js/select2/i18n/es.js | 52 +
.../select2/src/js/select2/i18n/et.js | 53 +
.../select2/src/js/select2/i18n/eu.js | 51 +
.../select2/src/js/select2/i18n/fa.js | 38 +
.../select2/src/js/select2/i18n/fi.js | 30 +
.../select2/src/js/select2/i18n/fr.js | 33 +
.../select2/src/js/select2/i18n/gl.js | 39 +
.../select2/src/js/select2/i18n/he.js | 56 +
.../select2/src/js/select2/i18n/hi.js | 39 +
.../select2/src/js/select2/i18n/hr.js | 44 +
.../select2/src/js/select2/i18n/hsb.js | 48 +
.../select2/src/js/select2/i18n/hu.js | 30 +
.../select2/src/js/select2/i18n/hy.js | 38 +
.../select2/src/js/select2/i18n/id.js | 30 +
.../select2/src/js/select2/i18n/is.js | 41 +
.../select2/src/js/select2/i18n/it.js | 48 +
.../select2/src/js/select2/i18n/ja.js | 36 +
.../select2/src/js/select2/i18n/km.js | 36 +
.../select2/src/js/select2/i18n/ko.js | 36 +
.../select2/src/js/select2/i18n/lt.js | 52 +
.../select2/src/js/select2/i18n/lv.js | 51 +
.../select2/src/js/select2/i18n/mk.js | 47 +
.../select2/src/js/select2/i18n/ms.js | 30 +
.../select2/src/js/select2/i18n/nb.js | 32 +
.../select2/src/js/select2/i18n/nl.js | 43 +
.../select2/src/js/select2/i18n/pl.js | 45 +
.../select2/src/js/select2/i18n/ps.js | 45 +
.../select2/src/js/select2/i18n/pt-BR.js | 46 +
.../select2/src/js/select2/i18n/pt.js | 40 +
.../select2/src/js/select2/i18n/ro.js | 46 +
.../select2/src/js/select2/i18n/ru.js | 58 +
.../select2/src/js/select2/i18n/sk.js | 59 +
.../select2/src/js/select2/i18n/sl.js | 54 +
.../select2/src/js/select2/i18n/sr-Cyrl.js | 55 +
.../select2/src/js/select2/i18n/sr.js | 55 +
.../select2/src/js/select2/i18n/sv.js | 37 +
.../select2/src/js/select2/i18n/th.js | 36 +
.../select2/src/js/select2/i18n/tr.js | 36 +
.../select2/src/js/select2/i18n/uk.js | 43 +
.../select2/src/js/select2/i18n/vi.js | 37 +
.../select2/src/js/select2/i18n/zh-CN.js | 36 +
.../select2/src/js/select2/i18n/zh-TW.js | 33 +
.../select2/src/js/select2/keys.js | 25 +
.../select2/src/js/select2/options.js | 122 +
.../select2/src/js/select2/results.js | 523 +
.../src/js/select2/selection/allowClear.js | 97 +
.../select2/src/js/select2/selection/base.js | 158 +
.../src/js/select2/selection/clickMask.js | 29 +
.../src/js/select2/selection/eventRelay.js | 45 +
.../src/js/select2/selection/multiple.js | 109 +
.../src/js/select2/selection/placeholder.js | 49 +
.../src/js/select2/selection/search.js | 222 +
.../src/js/select2/selection/single.js | 99 +
.../js/select2/selection/stopPropagation.js | 38 +
.../select2/src/js/select2/translation.js | 36 +
.../select2/src/js/select2/utils.js | 276 +
.../select2/src/js/wrapper.end.js | 12 +
.../select2/src/js/wrapper.start.js | 38 +
.../select2/src/scss/_dropdown.scss | 73 +
.../select2/src/scss/_multiple.scss | 35 +
.../select2/src/scss/_single.scss | 34 +
.../select2/src/scss/core.scss | 48 +
.../select2/src/scss/mixins/_gradients.scss | 13 +
.../src/scss/theme/classic/_defaults.scss | 34 +
.../src/scss/theme/classic/_multiple.scss | 93 +
.../src/scss/theme/classic/_single.scss | 124 +
.../src/scss/theme/classic/layout.scss | 64 +
.../src/scss/theme/default/_multiple.scss | 98 +
.../src/scss/theme/default/_single.scss | 83 +
.../src/scss/theme/default/layout.scss | 97 +
.../select2/tests/a11y/search-tests.js | 51 +
.../select2/tests/a11y/selection-tests.js | 154 +
.../select2/tests/data/array-tests.js | 318 +
.../select2/tests/data/base-tests.js | 29 +
.../select2/tests/data/inputData-tests.js | 158 +
.../tests/data/maximumInputLength-tests.js | 138 +
.../data/maximumSelectionLength-tests.js | 202 +
.../tests/data/minimumInputLength-tests.js | 138 +
.../select2/tests/data/select-tests.js | 489 +
.../select2/tests/data/tags-tests.js | 276 +
.../select2/tests/data/tokenizer-tests.js | 219 +
.../tests/dropdown/dropdownCss-tests.js | 104 +
.../tests/dropdown/positioning-tests.js | 177 +
.../tests/dropdown/selectOnClose-tests.js | 137 +
.../tests/dropdown/stopPropagation-tests.js | 33 +
.../bower_components/select2/tests/helpers.js | 46 +
.../select2/tests/integration.html | 21 +
.../select2/tests/integration/dom-changes.js | 257 +
.../select2/tests/integration/jquery-calls.js | 30 +
.../tests/integration/select2-methods.js | 139 +
.../select2/tests/options/ajax-tests.js | 32 +
.../select2/tests/options/data-tests.js | 44 +
.../select2/tests/options/deprecated-tests.js | 250 +
.../tests/options/translation-tests.js | 28 +
.../select2/tests/options/width-tests.js | 66 +
.../select2/tests/results/focusing-tests.js | 138 +
.../tests/selection/allowClear-tests.js | 218 +
.../tests/selection/containerCss-tests.js | 104 +
.../select2/tests/selection/multiple-tests.js | 149 +
.../tests/selection/placeholder-tests.js | 74 +
.../select2/tests/selection/search-tests.js | 191 +
.../select2/tests/selection/single-tests.js | 117 +
.../tests/selection/stopPropagation-tests.js | 33 +
.../bower_components/select2/tests/unit.html | 95 +
.../select2/tests/utils/decorator-tests.js | 189 +
.../select2/tests/utils/escapeMarkup-tests.js | 36 +
.../select2/tests/vendor/jquery-1.7.2.js | 9404 ++++
.../select2/tests/vendor/qunit-1.23.1.css | 305 +
.../select2/tests/vendor/qunit-1.23.1.js | 4334 ++
.../select2/vendor/jquery-2.1.0.js | 9111 ++++
.../bootstrap-3.3.7/dist/css/AdminLTE.css | 4979 ++
.../bootstrap-3.3.7/dist/css/AdminLTE.min.css | 7 +
.../bootstrap-3.3.7/dist/css/adminlte.css.map | 140 +
.../dist/css/adminlte.min.css.map | 140 +
.../css/alt/AdminLTE-bootstrap-social.css | 760 +
.../css/alt/AdminLTE-bootstrap-social.min.css | 1 +
.../dist/css/alt/AdminLTE-fullcalendar.css | 93 +
.../css/alt/AdminLTE-fullcalendar.min.css | 1 +
.../dist/css/alt/AdminLTE-select2.css | 100 +
.../dist/css/alt/AdminLTE-select2.min.css | 1 +
.../dist/css/alt/AdminLTE-without-plugins.css | 4004 ++
.../css/alt/AdminLTE-without-plugins.min.css | 7 +
.../dist/css/bootstrap-table.min.css | 1 +
.../dist/css/bootstrap.min.css | 5 +
.../dist/css/skins/_all-skins.css | 1781 +
.../dist/css/skins/_all-skins.min.css | 1 +
.../dist/css/skins/skin-black-light.css | 171 +
.../dist/css/skins/skin-black-light.min.css | 1 +
.../dist/css/skins/skin-black.css | 161 +
.../dist/css/skins/skin-black.min.css | 1 +
.../dist/css/skins/skin-blue-light.css | 163 +
.../dist/css/skins/skin-blue-light.min.css | 1 +
.../dist/css/skins/skin-blue.css | 142 +
.../dist/css/skins/skin-blue.min.css | 1 +
.../dist/css/skins/skin-green-light.css | 152 +
.../dist/css/skins/skin-green-light.min.css | 1 +
.../dist/css/skins/skin-green.css | 134 +
.../dist/css/skins/skin-green.min.css | 1 +
.../dist/css/skins/skin-purple-light.css | 152 +
.../dist/css/skins/skin-purple-light.min.css | 1 +
.../dist/css/skins/skin-purple.css | 134 +
.../dist/css/skins/skin-purple.min.css | 1 +
.../dist/css/skins/skin-red-light.css | 152 +
.../dist/css/skins/skin-red-light.min.css | 1 +
.../dist/css/skins/skin-red.css | 134 +
.../dist/css/skins/skin-red.min.css | 1 +
.../dist/css/skins/skin-yellow-light.css | 152 +
.../dist/css/skins/skin-yellow-light.min.css | 1 +
.../dist/css/skins/skin-yellow.css | 134 +
.../dist/css/skins/skin-yellow.min.css | 1 +
.../dist/img/user2-160x160.jpg | Bin 0 -> 7070 bytes
.../bootstrap-3.3.7/dist/js/adminlte.js | 1139 +
.../bootstrap-3.3.7/dist/js/adminlte.min.js | 14 +
.../bootstrap-3.3.7/dist/js/bootstrap.min.js | 7 +
.../static/bootstrap-3.3.7/dist/js/demo.js | 354 +
.../bootstrap-datepicker.js | 2039 +
.../bootstrap-datepicker.min.js | 8 +
.../bootstrap-datetimepicker.min.css | 420 +
.../bootstrap-datetimepicker.min.js | 794 +
.../moment-with-locales.js | 0
.../bootstrap-dialog/bootstrap-dialog.min.css | 1 +
.../bootstrap-dialog/bootstrap-dialog.min.js | 1 +
.../.github/CODE_OF_CONDUCT.md | 46 +
.../.github/CONTRIBUTING.md | 128 +
.../.github/FUNDING.yml | 4 +
.../.github/ISSUE_TEMPLATE.md | 48 +
.../.github/PULL_REQUEST_TEMPLATE.md | 16 +
.../.github/config.yml | 9 +
.../.github/stale.yml | 19 +
.../bootstrap-fileinput-master/.gitignore | 4 +
.../bootstrap-fileinput-master/.npmignore | 8 +
.../bootstrap-fileinput-master/CHANGE.md | 1251 +
.../bootstrap-fileinput-master/LICENSE.md | 28 +
.../bootstrap-fileinput-master/README.md | 168 +
.../bootstrap-fileinput-master/bower.json | 40 +
.../bootstrap-fileinput-master/composer.json | 36 +
.../css/fileinput-rtl.css | 82 +
.../css/fileinput-rtl.min.css | 12 +
.../css/fileinput.css | 550 +
.../css/fileinput.min.css | 12 +
.../examples/index.html | 244 +
.../img/loading-sm.gif | Bin 0 -> 2670 bytes
.../img/loading.gif | Bin 0 -> 847 bytes
.../js/fileinput.js | 5635 +++
.../js/fileinput.min.js | 13 +
.../js/locales/LANG.js | 111 +
.../js/locales/ar.js | 112 +
.../js/locales/az.js | 112 +
.../js/locales/bg.js | 111 +
.../js/locales/ca.js | 111 +
.../js/locales/cr.js | 112 +
.../js/locales/cs.js | 111 +
.../js/locales/da.js | 111 +
.../js/locales/de.js | 109 +
.../js/locales/el.js | 111 +
.../js/locales/es.js | 111 +
.../js/locales/et.js | 110 +
.../js/locales/fa.js | 112 +
.../js/locales/fi.js | 101 +
.../js/locales/fr.js | 110 +
.../js/locales/gl.js | 111 +
.../js/locales/he.js | 106 +
.../js/locales/hu.js | 111 +
.../js/locales/id.js | 112 +
.../js/locales/it.js | 113 +
.../js/locales/ja.js | 120 +
.../js/locales/ka.js | 112 +
.../js/locales/kr.js | 111 +
.../js/locales/kz.js | 99 +
.../js/locales/lt.js | 111 +
.../js/locales/nl.js | 111 +
.../js/locales/no.js | 110 +
.../js/locales/pl.js | 101 +
.../js/locales/pt-BR.js | 111 +
.../js/locales/pt.js | 111 +
.../js/locales/ro.js | 112 +
.../js/locales/ru.js | 112 +
.../js/locales/sk.js | 111 +
.../js/locales/sl.js | 109 +
.../js/locales/sv.js | 110 +
.../js/locales/th.js | 111 +
.../js/locales/tr.js | 110 +
.../js/locales/uk.js | 112 +
.../js/locales/uz.js | 112 +
.../js/locales/vi.js | 112 +
.../js/locales/zh-TW.js | 113 +
.../js/locales/zh.js | 112 +
.../js/plugins/piexif.js | 2471 +
.../js/plugins/piexif.min.js | 1 +
.../js/plugins/purify.js | 1009 +
.../js/plugins/purify.min.js | 1 +
.../js/plugins/sortable.js | 1590 +
.../js/plugins/sortable.min.js | 1 +
.../nuget/Package.nuspec | 21 +
.../nuget/build.bat | 35 +
.../bootstrap-fileinput-master/package.json | 48 +
.../scss/fileinput-rtl.scss | 136 +
.../scss/fileinput.scss | 640 +
.../scss/themes/explorer-fa/theme.scss | 201 +
.../scss/themes/explorer-fas/theme.scss | 201 +
.../scss/themes/explorer/theme.scss | 201 +
.../themes/explorer-fa/theme.css | 157 +
.../themes/explorer-fa/theme.js | 88 +
.../themes/explorer-fa/theme.min.css | 13 +
.../themes/explorer-fa/theme.min.js | 14 +
.../themes/explorer-fas/theme.css | 157 +
.../themes/explorer-fas/theme.js | 88 +
.../themes/explorer-fas/theme.min.css | 13 +
.../themes/explorer-fas/theme.min.js | 14 +
.../themes/explorer/theme.css | 156 +
.../themes/explorer/theme.js | 57 +
.../themes/explorer/theme.min.css | 12 +
.../themes/explorer/theme.min.js | 12 +
.../themes/fa/theme.js | 49 +
.../themes/fa/theme.min.js | 12 +
.../themes/fas/theme.js | 49 +
.../themes/fas/theme.min.js | 12 +
.../themes/gly/theme.js | 46 +
.../themes/gly/theme.min.js | 12 +
.../bootstrap-select-1.13.0-dev/.eslintignore | 2 +
.../.github/FUNDING.yml | 3 +
.../.github/ISSUE_TEMPLATE.md | 48 +
.../.github/move.yml | 24 +
.../bootstrap-select-1.13.0-dev/.gitignore | 13 +
.../bootstrap-select-1.13.0-dev/CHANGELOG.md | 571 +
.../CONTRIBUTING.md | 120 +
.../bootstrap-select-1.13.0-dev/Gruntfile.js | 292 +
.../bootstrap-select-1.13.0-dev/LICENSE | 21 +
.../bootstrap-select-1.13.0-dev/README.md | 122 +
.../bootstrap-select-1.13.0-dev/bower.json | 55 +
.../bootstrap-select-1.13.0-dev/composer.json | 33 +
.../dist/css/bootstrap-select.css | 458 +
.../dist/css/bootstrap-select.css.map | 1 +
.../dist/css/bootstrap-select.min.css | 6 +
.../dist/js/bootstrap-select.js | 3144 ++
.../dist/js/bootstrap-select.js.map | 1 +
.../dist/js/bootstrap-select.min.js | 9 +
.../dist/js/bootstrap-select.min.js.map | 1 +
.../dist/js/i18n/defaults-am_ET.js | 46 +
.../dist/js/i18n/defaults-am_ET.js.map | 1 +
.../dist/js/i18n/defaults-am_ET.min.js | 8 +
.../dist/js/i18n/defaults-ar_AR.js | 51 +
.../dist/js/i18n/defaults-ar_AR.js.map | 1 +
.../dist/js/i18n/defaults-ar_AR.min.js | 8 +
.../dist/js/i18n/defaults-bg_BG.js | 46 +
.../dist/js/i18n/defaults-bg_BG.js.map | 1 +
.../dist/js/i18n/defaults-bg_BG.min.js | 8 +
.../dist/js/i18n/defaults-cs_CZ.js | 39 +
.../dist/js/i18n/defaults-cs_CZ.js.map | 1 +
.../dist/js/i18n/defaults-cs_CZ.min.js | 8 +
.../dist/js/i18n/defaults-da_DK.js | 46 +
.../dist/js/i18n/defaults-da_DK.js.map | 1 +
.../dist/js/i18n/defaults-da_DK.min.js | 8 +
.../dist/js/i18n/defaults-de_DE.js | 46 +
.../dist/js/i18n/defaults-de_DE.js.map | 1 +
.../dist/js/i18n/defaults-de_DE.min.js | 8 +
.../dist/js/i18n/defaults-en_US.js | 46 +
.../dist/js/i18n/defaults-en_US.js.map | 1 +
.../dist/js/i18n/defaults-en_US.min.js | 8 +
.../dist/js/i18n/defaults-es_CL.js | 39 +
.../dist/js/i18n/defaults-es_CL.js.map | 1 +
.../dist/js/i18n/defaults-es_CL.min.js | 8 +
.../dist/js/i18n/defaults-es_ES.js | 39 +
.../dist/js/i18n/defaults-es_ES.js.map | 1 +
.../dist/js/i18n/defaults-es_ES.min.js | 8 +
.../dist/js/i18n/defaults-et_EE.js | 46 +
.../dist/js/i18n/defaults-et_EE.js.map | 1 +
.../dist/js/i18n/defaults-et_EE.min.js | 8 +
.../dist/js/i18n/defaults-eu.js | 39 +
.../dist/js/i18n/defaults-eu.js.map | 1 +
.../dist/js/i18n/defaults-eu.min.js | 8 +
.../dist/js/i18n/defaults-fa_IR.js | 39 +
.../dist/js/i18n/defaults-fa_IR.js.map | 1 +
.../dist/js/i18n/defaults-fa_IR.min.js | 8 +
.../dist/js/i18n/defaults-fi_FI.js | 46 +
.../dist/js/i18n/defaults-fi_FI.js.map | 1 +
.../dist/js/i18n/defaults-fi_FI.min.js | 8 +
.../dist/js/i18n/defaults-fr_FR.js | 46 +
.../dist/js/i18n/defaults-fr_FR.js.map | 1 +
.../dist/js/i18n/defaults-fr_FR.min.js | 8 +
.../dist/js/i18n/defaults-hr_HR.js | 46 +
.../dist/js/i18n/defaults-hr_HR.js.map | 1 +
.../dist/js/i18n/defaults-hr_HR.min.js | 8 +
.../dist/js/i18n/defaults-hu_HU.js | 46 +
.../dist/js/i18n/defaults-hu_HU.js.map | 1 +
.../dist/js/i18n/defaults-hu_HU.min.js | 8 +
.../dist/js/i18n/defaults-id_ID.js | 39 +
.../dist/js/i18n/defaults-id_ID.js.map | 1 +
.../dist/js/i18n/defaults-id_ID.min.js | 8 +
.../dist/js/i18n/defaults-it_IT.js | 41 +
.../dist/js/i18n/defaults-it_IT.js.map | 1 +
.../dist/js/i18n/defaults-it_IT.min.js | 8 +
.../dist/js/i18n/defaults-ja_JP.js | 39 +
.../dist/js/i18n/defaults-ja_JP.js.map | 1 +
.../dist/js/i18n/defaults-ja_JP.min.js | 8 +
.../dist/js/i18n/defaults-kh_KM.js | 46 +
.../dist/js/i18n/defaults-kh_KM.js.map | 1 +
.../dist/js/i18n/defaults-kh_KM.min.js | 8 +
.../dist/js/i18n/defaults-ko_KR.js | 46 +
.../dist/js/i18n/defaults-ko_KR.js.map | 1 +
.../dist/js/i18n/defaults-ko_KR.min.js | 8 +
.../dist/js/i18n/defaults-lt_LT.js | 46 +
.../dist/js/i18n/defaults-lt_LT.js.map | 1 +
.../dist/js/i18n/defaults-lt_LT.min.js | 8 +
.../dist/js/i18n/defaults-lv_LV.js | 46 +
.../dist/js/i18n/defaults-lv_LV.js.map | 1 +
.../dist/js/i18n/defaults-lv_LV.min.js | 8 +
.../dist/js/i18n/defaults-nb_NO.js | 46 +
.../dist/js/i18n/defaults-nb_NO.js.map | 1 +
.../dist/js/i18n/defaults-nb_NO.min.js | 8 +
.../dist/js/i18n/defaults-nl_NL.js | 39 +
.../dist/js/i18n/defaults-nl_NL.js.map | 1 +
.../dist/js/i18n/defaults-nl_NL.min.js | 8 +
.../dist/js/i18n/defaults-pl_PL.js | 39 +
.../dist/js/i18n/defaults-pl_PL.js.map | 1 +
.../dist/js/i18n/defaults-pl_PL.min.js | 8 +
.../dist/js/i18n/defaults-pt_BR.js | 39 +
.../dist/js/i18n/defaults-pt_BR.js.map | 1 +
.../dist/js/i18n/defaults-pt_BR.min.js | 8 +
.../dist/js/i18n/defaults-pt_PT.js | 39 +
.../dist/js/i18n/defaults-pt_PT.js.map | 1 +
.../dist/js/i18n/defaults-pt_PT.min.js | 8 +
.../dist/js/i18n/defaults-ro_RO.js | 40 +
.../dist/js/i18n/defaults-ro_RO.js.map | 1 +
.../dist/js/i18n/defaults-ro_RO.min.js | 8 +
.../dist/js/i18n/defaults-ru_RU.js | 40 +
.../dist/js/i18n/defaults-ru_RU.js.map | 1 +
.../dist/js/i18n/defaults-ru_RU.min.js | 8 +
.../dist/js/i18n/defaults-sk_SK.js | 39 +
.../dist/js/i18n/defaults-sk_SK.js.map | 1 +
.../dist/js/i18n/defaults-sk_SK.min.js | 8 +
.../dist/js/i18n/defaults-sl_SI.js | 44 +
.../dist/js/i18n/defaults-sl_SI.js.map | 1 +
.../dist/js/i18n/defaults-sl_SI.min.js | 8 +
.../dist/js/i18n/defaults-sv_SE.js | 46 +
.../dist/js/i18n/defaults-sv_SE.js.map | 1 +
.../dist/js/i18n/defaults-sv_SE.min.js | 8 +
.../dist/js/i18n/defaults-tr_TR.js | 46 +
.../dist/js/i18n/defaults-tr_TR.js.map | 1 +
.../dist/js/i18n/defaults-tr_TR.min.js | 8 +
.../dist/js/i18n/defaults-ua_UA.js | 39 +
.../dist/js/i18n/defaults-ua_UA.js.map | 1 +
.../dist/js/i18n/defaults-ua_UA.min.js | 8 +
.../dist/js/i18n/defaults-vi_VN.js | 46 +
.../dist/js/i18n/defaults-vi_VN.js.map | 1 +
.../dist/js/i18n/defaults-vi_VN.min.js | 8 +
.../dist/js/i18n/defaults-zh_CN.js | 39 +
.../dist/js/i18n/defaults-zh_CN.js.map | 1 +
.../dist/js/i18n/defaults-zh_CN.min.js | 8 +
.../dist/js/i18n/defaults-zh_TW.js | 39 +
.../dist/js/i18n/defaults-zh_TW.js.map | 1 +
.../dist/js/i18n/defaults-zh_TW.min.js | 8 +
.../highlight.js/9.15.6/css/github.min.css | 1 +
.../highlight.js/9.15.6/js/highlight.pack.js | 2 +
.../docs/custom_theme/css/base.css | 100 +
.../docs/custom_theme/js/base.js | 96 +
.../docs/custom_theme/main.html | 126 +
.../docs/custom_theme/nav.html | 60 +
.../docs/custom_theme/toc.html | 16 +
.../docs/docs/css/custom.css | 339 +
.../docs/docs/dist/css/bootstrap-select.css | 458 +
.../docs/dist/css/bootstrap-select.css.map | 1 +
.../docs/dist/css/bootstrap-select.min.css | 6 +
.../docs/docs/dist/js/bootstrap-select.js | 3144 ++
.../docs/docs/dist/js/bootstrap-select.js.map | 1 +
.../docs/docs/dist/js/bootstrap-select.min.js | 9 +
.../docs/dist/js/bootstrap-select.min.js.map | 1 +
.../docs/docs/dist/js/i18n/defaults-am_ET.js | 46 +
.../docs/dist/js/i18n/defaults-am_ET.js.map | 1 +
.../docs/dist/js/i18n/defaults-am_ET.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-ar_AR.js | 51 +
.../docs/dist/js/i18n/defaults-ar_AR.js.map | 1 +
.../docs/dist/js/i18n/defaults-ar_AR.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-bg_BG.js | 46 +
.../docs/dist/js/i18n/defaults-bg_BG.js.map | 1 +
.../docs/dist/js/i18n/defaults-bg_BG.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-cs_CZ.js | 39 +
.../docs/dist/js/i18n/defaults-cs_CZ.js.map | 1 +
.../docs/dist/js/i18n/defaults-cs_CZ.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-da_DK.js | 46 +
.../docs/dist/js/i18n/defaults-da_DK.js.map | 1 +
.../docs/dist/js/i18n/defaults-da_DK.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-de_DE.js | 46 +
.../docs/dist/js/i18n/defaults-de_DE.js.map | 1 +
.../docs/dist/js/i18n/defaults-de_DE.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-en_US.js | 46 +
.../docs/dist/js/i18n/defaults-en_US.js.map | 1 +
.../docs/dist/js/i18n/defaults-en_US.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-es_CL.js | 39 +
.../docs/dist/js/i18n/defaults-es_CL.js.map | 1 +
.../docs/dist/js/i18n/defaults-es_CL.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-es_ES.js | 39 +
.../docs/dist/js/i18n/defaults-es_ES.js.map | 1 +
.../docs/dist/js/i18n/defaults-es_ES.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-et_EE.js | 46 +
.../docs/dist/js/i18n/defaults-et_EE.js.map | 1 +
.../docs/dist/js/i18n/defaults-et_EE.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-eu.js | 39 +
.../docs/docs/dist/js/i18n/defaults-eu.js.map | 1 +
.../docs/docs/dist/js/i18n/defaults-eu.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-fa_IR.js | 39 +
.../docs/dist/js/i18n/defaults-fa_IR.js.map | 1 +
.../docs/dist/js/i18n/defaults-fa_IR.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-fi_FI.js | 46 +
.../docs/dist/js/i18n/defaults-fi_FI.js.map | 1 +
.../docs/dist/js/i18n/defaults-fi_FI.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-fr_FR.js | 46 +
.../docs/dist/js/i18n/defaults-fr_FR.js.map | 1 +
.../docs/dist/js/i18n/defaults-fr_FR.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-hr_HR.js | 46 +
.../docs/dist/js/i18n/defaults-hr_HR.js.map | 1 +
.../docs/dist/js/i18n/defaults-hr_HR.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-hu_HU.js | 46 +
.../docs/dist/js/i18n/defaults-hu_HU.js.map | 1 +
.../docs/dist/js/i18n/defaults-hu_HU.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-id_ID.js | 39 +
.../docs/dist/js/i18n/defaults-id_ID.js.map | 1 +
.../docs/dist/js/i18n/defaults-id_ID.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-it_IT.js | 41 +
.../docs/dist/js/i18n/defaults-it_IT.js.map | 1 +
.../docs/dist/js/i18n/defaults-it_IT.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-ja_JP.js | 39 +
.../docs/dist/js/i18n/defaults-ja_JP.js.map | 1 +
.../docs/dist/js/i18n/defaults-ja_JP.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-kh_KM.js | 46 +
.../docs/dist/js/i18n/defaults-kh_KM.js.map | 1 +
.../docs/dist/js/i18n/defaults-kh_KM.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-ko_KR.js | 46 +
.../docs/dist/js/i18n/defaults-ko_KR.js.map | 1 +
.../docs/dist/js/i18n/defaults-ko_KR.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-lt_LT.js | 46 +
.../docs/dist/js/i18n/defaults-lt_LT.js.map | 1 +
.../docs/dist/js/i18n/defaults-lt_LT.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-lv_LV.js | 46 +
.../docs/dist/js/i18n/defaults-lv_LV.js.map | 1 +
.../docs/dist/js/i18n/defaults-lv_LV.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-nb_NO.js | 46 +
.../docs/dist/js/i18n/defaults-nb_NO.js.map | 1 +
.../docs/dist/js/i18n/defaults-nb_NO.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-nl_NL.js | 39 +
.../docs/dist/js/i18n/defaults-nl_NL.js.map | 1 +
.../docs/dist/js/i18n/defaults-nl_NL.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-pl_PL.js | 39 +
.../docs/dist/js/i18n/defaults-pl_PL.js.map | 1 +
.../docs/dist/js/i18n/defaults-pl_PL.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-pt_BR.js | 39 +
.../docs/dist/js/i18n/defaults-pt_BR.js.map | 1 +
.../docs/dist/js/i18n/defaults-pt_BR.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-pt_PT.js | 39 +
.../docs/dist/js/i18n/defaults-pt_PT.js.map | 1 +
.../docs/dist/js/i18n/defaults-pt_PT.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-ro_RO.js | 40 +
.../docs/dist/js/i18n/defaults-ro_RO.js.map | 1 +
.../docs/dist/js/i18n/defaults-ro_RO.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-ru_RU.js | 40 +
.../docs/dist/js/i18n/defaults-ru_RU.js.map | 1 +
.../docs/dist/js/i18n/defaults-ru_RU.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-sk_SK.js | 39 +
.../docs/dist/js/i18n/defaults-sk_SK.js.map | 1 +
.../docs/dist/js/i18n/defaults-sk_SK.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-sl_SI.js | 44 +
.../docs/dist/js/i18n/defaults-sl_SI.js.map | 1 +
.../docs/dist/js/i18n/defaults-sl_SI.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-sv_SE.js | 46 +
.../docs/dist/js/i18n/defaults-sv_SE.js.map | 1 +
.../docs/dist/js/i18n/defaults-sv_SE.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-tr_TR.js | 46 +
.../docs/dist/js/i18n/defaults-tr_TR.js.map | 1 +
.../docs/dist/js/i18n/defaults-tr_TR.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-ua_UA.js | 39 +
.../docs/dist/js/i18n/defaults-ua_UA.js.map | 1 +
.../docs/dist/js/i18n/defaults-ua_UA.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-vi_VN.js | 46 +
.../docs/dist/js/i18n/defaults-vi_VN.js.map | 1 +
.../docs/dist/js/i18n/defaults-vi_VN.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-zh_CN.js | 39 +
.../docs/dist/js/i18n/defaults-zh_CN.js.map | 1 +
.../docs/dist/js/i18n/defaults-zh_CN.min.js | 8 +
.../docs/docs/dist/js/i18n/defaults-zh_TW.js | 39 +
.../docs/dist/js/i18n/defaults-zh_TW.js.map | 1 +
.../docs/dist/js/i18n/defaults-zh_TW.min.js | 8 +
.../docs/docs/examples.md | 923 +
.../docs/docs/index.md | 71 +
.../docs/docs/methods.md | 231 +
.../docs/docs/options.md | 491 +
.../docs/docs/playground/3/index.html | 12 +
.../docs/docs/playground/index.html | 12 +
.../docs/docs/playground/plnkrOpener.js | 92 +
.../docs/mkdocs.yml | 21 +
.../js/.eslintrc.json | 156 +
.../js/bootstrap-select.js | 3143 ++
.../js/i18n/defaults-am_ET.js | 23 +
.../js/i18n/defaults-ar_AR.js | 23 +
.../js/i18n/defaults-bg_BG.js | 23 +
.../js/i18n/defaults-cs_CZ.js | 16 +
.../js/i18n/defaults-da_DK.js | 23 +
.../js/i18n/defaults-de_DE.js | 23 +
.../js/i18n/defaults-en_US.js | 23 +
.../js/i18n/defaults-es_CL.js | 16 +
.../js/i18n/defaults-es_ES.js | 16 +
.../js/i18n/defaults-et_EE.js | 23 +
.../js/i18n/defaults-eu.js | 16 +
.../js/i18n/defaults-fa_IR.js | 16 +
.../js/i18n/defaults-fi_FI.js | 23 +
.../js/i18n/defaults-fr_FR.js | 23 +
.../js/i18n/defaults-hr_HR.js | 23 +
.../js/i18n/defaults-hu_HU.js | 23 +
.../js/i18n/defaults-id_ID.js | 16 +
.../js/i18n/defaults-it_IT.js | 19 +
.../js/i18n/defaults-ja_JP.js | 17 +
.../js/i18n/defaults-kh_KM.js | 23 +
.../js/i18n/defaults-ko_KR.js | 23 +
.../js/i18n/defaults-lt_LT.js | 23 +
.../js/i18n/defaults-lv_LV.js | 23 +
.../js/i18n/defaults-nb_NO.js | 23 +
.../js/i18n/defaults-nl_NL.js | 17 +
.../js/i18n/defaults-pl_PL.js | 16 +
.../js/i18n/defaults-pt_BR.js | 17 +
.../js/i18n/defaults-pt_PT.js | 17 +
.../js/i18n/defaults-ro_RO.js | 18 +
.../js/i18n/defaults-ru_RU.js | 17 +
.../js/i18n/defaults-sk_SK.js | 16 +
.../js/i18n/defaults-sl_SI.js | 21 +
.../js/i18n/defaults-sv_SE.js | 23 +
.../js/i18n/defaults-tr_TR.js | 24 +
.../js/i18n/defaults-ua_UA.js | 16 +
.../js/i18n/defaults-vi_VN.js | 23 +
.../js/i18n/defaults-zh_CN.js | 16 +
.../js/i18n/defaults-zh_TW.js | 16 +
.../js/umd-intro.js | 17 +
.../js/umd-outro.js | 3 +
.../less/bootstrap-select.less | 502 +
.../less/variables.less | 17 +
.../nuget/MyGet.ps1 | 20 +
.../nuget/bootstrap-select.nuspec | 23 +
.../package-lock.json | 3994 ++
.../bootstrap-select-1.13.0-dev/package.json | 69 +
.../sass/bootstrap-select.scss | 520 +
.../sass/variables.scss | 17 +
.../tests/bootstrap3.html | 357 +
.../tests/bootstrap4.html | 359 +
.../bootstrap-select/bootstrap-select.min.css | 6 +
.../bootstrap-select/bootstrap-select.min.js | 9 +
.../bootstrap-slider/bootstrap-slider.js | 1576 +
.../plugins/bootstrap-slider/slider.css | 282 +
.../bootstrap-table-develop/.browserslistrc | 13 +
.../bootstrap-table-develop/.eslintrc.js | 75 +
.../.github/ISSUE_TEMPLATE.md | 14 +
.../bootstrap-table-develop/.gitignore | 32 +
.../bootstrap-table-develop/.npmignore | 2 +
.../bootstrap-table-develop/.stylelintrc | 3 +
.../bootstrap-table-develop/.travis.yml | 4 +
.../bootstrap-table-develop/CHANGELOG.md | 451 +
.../bootstrap-table-develop/CONTRIBUTING.md | 213 +
.../bootstrap-table-develop/DONATORS.md | 60 +
.../bootstrap-table-develop/FUNDING.yml | 8 +
.../plugins/bootstrap-table-develop/Gemfile | 13 +
.../bootstrap-table-develop/Gruntfile.js | 132 +
.../plugins/bootstrap-table-develop/LICENSE | 21 +
.../plugins/bootstrap-table-develop/README.md | 118 +
.../bootstrap-table-develop/_config.yml | 31 +
.../bootstrap-table.jquery.json | 30 +
.../bootstrap-table-develop/bower.json | 27 +
.../bootstrap-table-develop/composer.json | 17 +
.../bootstrap-table-develop/deploy_key.enc | Bin 0 -> 3392 bytes
.../dist/bootstrap-table-locale-all.js | 1928 +
.../dist/bootstrap-table-locale-all.min.js | 7 +
.../dist/bootstrap-table-vue.esm.js | 1809 +
.../dist/bootstrap-table-vue.esm.min.js | 10 +
.../dist/bootstrap-table-vue.js | 1817 +
.../dist/bootstrap-table-vue.min.js | 10 +
.../dist/bootstrap-table.css | 313 +
.../dist/bootstrap-table.js | 3094 ++
.../dist/bootstrap-table.min.css | 1 +
.../dist/bootstrap-table.min.js | 8 +
.../bootstrap-table-accent-neutralise.js | 182 +
.../bootstrap-table-accent-neutralise.min.js | 7 +
.../addrbar/bootstrap-table-addrbar.js | 1485 +
.../addrbar/bootstrap-table-addrbar.min.js | 10 +
.../angular/bootstrap-table-angular.js | 107 +
.../angular/bootstrap-table-angular.min.js | 7 +
.../bootstrap-table-auto-refresh.css | 3 +
.../bootstrap-table-auto-refresh.js | 84 +
.../bootstrap-table-auto-refresh.min.js | 7 +
.../cell-input/bootstrap-table-cell-input.css | 12 +
.../cell-input/bootstrap-table-cell-input.js | 2087 +
.../bootstrap-table-cell-input.min.css | 10 +
.../bootstrap-table-cell-input.min.js | 10 +
.../bootstrap-table-click-edit-row.css | 21 +
.../bootstrap-table-click-edit-row.js | 142 +
.../bootstrap-table-click-edit-row.min.js | 7 +
.../cookie/bootstrap-table-cookie.js | 434 +
.../cookie/bootstrap-table-cookie.min.js | 7 +
.../copy-rows/bootstrap-table-copy-rows.js | 102 +
.../bootstrap-table-copy-rows.min.js | 7 +
.../defer-url/bootstrap-table-defer-url.js | 779 +
.../bootstrap-table-defer-url.min.js | 10 +
.../editable/bootstrap-table-editable.js | 146 +
.../editable/bootstrap-table-editable.min.js | 7 +
.../export/bootstrap-table-export.js | 131 +
.../export/bootstrap-table-export.min.js | 7 +
.../bootstrap-table-filter-control.css | 13 +
.../bootstrap-table-filter-control.js | 697 +
.../bootstrap-table-filter-control.min.css | 10 +
.../bootstrap-table-filter-control.min.js | 7 +
.../filter/bootstrap-table-filter.js | 67 +
.../filter/bootstrap-table-filter.min.js | 7 +
.../bootstrap-table-fixed-columns.css | 27 +
.../bootstrap-table-fixed-columns.js | 1378 +
.../bootstrap-table-fixed-columns.min.css | 10 +
.../bootstrap-table-fixed-columns.min.js | 10 +
.../flat-json/bootstrap-table-flat-json.js | 62 +
.../bootstrap-table-flat-json.min.js | 7 +
.../group-by-v2/bootstrap-table-group-by.css | 7 +
.../group-by-v2/bootstrap-table-group-by.js | 226 +
.../bootstrap-table-group-by.min.css | 10 +
.../bootstrap-table-group-by.min.js | 7 +
.../group-by/bootstrap-table-group-by.css | 53 +
.../group-by/bootstrap-table-group-by.js | 243 +
.../group-by/bootstrap-table-group-by.min.js | 7 +
.../bootstrap-table-i18n-enhance.js | 34 +
.../bootstrap-table-i18n-enhance.min.js | 7 +
.../key-events/bootstrap-table-key-events.js | 80 +
.../bootstrap-table-key-events.min.js | 7 +
.../mobile/bootstrap-table-mobile.js | 136 +
.../mobile/bootstrap-table-mobile.min.js | 7 +
.../bootstrap-table-multi-toggle.js | 88 +
.../bootstrap-table-multi-toggle.min.js | 7 +
.../bootstrap-table-multiple-search.js | 71 +
.../bootstrap-table-multiple-search.min.js | 7 +
...bootstrap-table-multiple-selection-row.css | 17 +
.../bootstrap-table-multiple-selection-row.js | 127 +
...tstrap-table-multiple-selection-row.min.js | 7 +
.../bootstrap-table-multiple-sort.js | 393 +
.../bootstrap-table-multiple-sort.min.js | 7 +
.../bootstrap-table-natural-sorting.js | 67 +
.../bootstrap-table-natural-sorting.min.js | 7 +
.../bootstrap-table-page-jump-to.css | 11 +
.../bootstrap-table-page-jump-to.js | 971 +
.../bootstrap-table-page-jump-to.min.css | 10 +
.../bootstrap-table-page-jump-to.min.js | 10 +
.../pipeline/bootstrap-table-pipeline.js | 1128 +
.../pipeline/bootstrap-table-pipeline.min.js | 10 +
.../extensions/print/bootstrap-table-print.js | 133 +
.../print/bootstrap-table-print.min.js | 7 +
.../bootstrap-table-reorder-columns.js | 181 +
.../bootstrap-table-reorder-columns.min.js | 7 +
.../bootstrap-table-reorder-rows.css | 14 +
.../bootstrap-table-reorder-rows.js | 118 +
.../bootstrap-table-reorder-rows.min.css | 10 +
.../bootstrap-table-reorder-rows.min.js | 7 +
.../resizable/bootstrap-table-resizable.js | 74 +
.../bootstrap-table-resizable.min.js | 7 +
.../bootstrap-table-select2-filter.js | 303 +
.../bootstrap-table-select2-filter.min.js | 7 +
.../bootstrap-table-sticky-header.css | 22 +
.../bootstrap-table-sticky-header.js | 111 +
.../bootstrap-table-sticky-header.min.css | 10 +
.../bootstrap-table-sticky-header.min.js | 7 +
.../toolbar/bootstrap-table-toolbar.js | 211 +
.../toolbar/bootstrap-table-toolbar.min.js | 7 +
.../bootstrap-table-tree-column.css | 1 +
.../bootstrap-table-tree-column.js | 130 +
.../bootstrap-table-tree-column.min.js | 7 +
.../treegrid/bootstrap-table-treegrid.js | 1817 +
.../treegrid/bootstrap-table-treegrid.min.js | 10 +
.../dist/locale/bootstrap-table-af-ZA.js | 40 +
.../dist/locale/bootstrap-table-af-ZA.min.js | 7 +
.../dist/locale/bootstrap-table-ar-SA.js | 40 +
.../dist/locale/bootstrap-table-ar-SA.min.js | 7 +
.../dist/locale/bootstrap-table-ca-ES.js | 44 +
.../dist/locale/bootstrap-table-ca-ES.min.js | 7 +
.../dist/locale/bootstrap-table-cs-CZ.js | 44 +
.../dist/locale/bootstrap-table-cs-CZ.min.js | 7 +
.../dist/locale/bootstrap-table-da-DK.js | 37 +
.../dist/locale/bootstrap-table-da-DK.min.js | 7 +
.../dist/locale/bootstrap-table-de-DE.js | 43 +
.../dist/locale/bootstrap-table-de-DE.min.js | 7 +
.../dist/locale/bootstrap-table-el-GR.js | 28 +
.../dist/locale/bootstrap-table-el-GR.min.js | 7 +
.../dist/locale/bootstrap-table-en-US.js | 49 +
.../dist/locale/bootstrap-table-en-US.min.js | 7 +
.../dist/locale/bootstrap-table-es-AR.js | 31 +
.../dist/locale/bootstrap-table-es-AR.min.js | 7 +
.../dist/locale/bootstrap-table-es-CL.js | 44 +
.../dist/locale/bootstrap-table-es-CL.min.js | 7 +
.../dist/locale/bootstrap-table-es-CR.js | 40 +
.../dist/locale/bootstrap-table-es-CR.min.js | 7 +
.../dist/locale/bootstrap-table-es-ES.js | 43 +
.../dist/locale/bootstrap-table-es-ES.min.js | 7 +
.../dist/locale/bootstrap-table-es-MX.js | 32 +
.../dist/locale/bootstrap-table-es-MX.min.js | 7 +
.../dist/locale/bootstrap-table-es-NI.js | 40 +
.../dist/locale/bootstrap-table-es-NI.min.js | 7 +
.../dist/locale/bootstrap-table-es-SP.js | 40 +
.../dist/locale/bootstrap-table-es-SP.min.js | 7 +
.../dist/locale/bootstrap-table-et-EE.js | 43 +
.../dist/locale/bootstrap-table-et-EE.min.js | 7 +
.../dist/locale/bootstrap-table-eu-EU.js | 721 +
.../dist/locale/bootstrap-table-eu-EU.min.js | 10 +
.../dist/locale/bootstrap-table-fa-IR.js | 43 +
.../dist/locale/bootstrap-table-fa-IR.min.js | 7 +
.../dist/locale/bootstrap-table-fi-FI.js | 721 +
.../dist/locale/bootstrap-table-fi-FI.min.js | 10 +
.../dist/locale/bootstrap-table-fr-BE.js | 28 +
.../dist/locale/bootstrap-table-fr-BE.min.js | 7 +
.../dist/locale/bootstrap-table-fr-CH.js | 721 +
.../dist/locale/bootstrap-table-fr-CH.min.js | 10 +
.../dist/locale/bootstrap-table-fr-FR.js | 41 +
.../dist/locale/bootstrap-table-fr-FR.min.js | 7 +
.../dist/locale/bootstrap-table-fr-LU.js | 721 +
.../dist/locale/bootstrap-table-fr-LU.min.js | 10 +
.../dist/locale/bootstrap-table-he-IL.js | 43 +
.../dist/locale/bootstrap-table-he-IL.min.js | 7 +
.../dist/locale/bootstrap-table-hr-HR.js | 44 +
.../dist/locale/bootstrap-table-hr-HR.min.js | 7 +
.../dist/locale/bootstrap-table-hu-HU.js | 43 +
.../dist/locale/bootstrap-table-hu-HU.min.js | 7 +
.../dist/locale/bootstrap-table-id-ID.js | 49 +
.../dist/locale/bootstrap-table-id-ID.min.js | 7 +
.../dist/locale/bootstrap-table-it-IT.js | 52 +
.../dist/locale/bootstrap-table-it-IT.min.js | 7 +
.../dist/locale/bootstrap-table-ja-JP.js | 43 +
.../dist/locale/bootstrap-table-ja-JP.min.js | 7 +
.../dist/locale/bootstrap-table-ka-GE.js | 40 +
.../dist/locale/bootstrap-table-ka-GE.min.js | 7 +
.../dist/locale/bootstrap-table-ko-KR.js | 37 +
.../dist/locale/bootstrap-table-ko-KR.min.js | 7 +
.../dist/locale/bootstrap-table-ms-MY.js | 43 +
.../dist/locale/bootstrap-table-ms-MY.min.js | 7 +
.../dist/locale/bootstrap-table-nb-NO.js | 37 +
.../dist/locale/bootstrap-table-nb-NO.min.js | 7 +
.../dist/locale/bootstrap-table-nl-BE.js | 721 +
.../dist/locale/bootstrap-table-nl-BE.min.js | 10 +
.../dist/locale/bootstrap-table-nl-NL.js | 52 +
.../dist/locale/bootstrap-table-nl-NL.min.js | 7 +
.../dist/locale/bootstrap-table-pl-PL.js | 37 +
.../dist/locale/bootstrap-table-pl-PL.min.js | 7 +
.../dist/locale/bootstrap-table-pt-BR.js | 41 +
.../dist/locale/bootstrap-table-pt-BR.min.js | 7 +
.../dist/locale/bootstrap-table-pt-PT.js | 43 +
.../dist/locale/bootstrap-table-pt-PT.min.js | 7 +
.../dist/locale/bootstrap-table-ro-RO.js | 43 +
.../dist/locale/bootstrap-table-ro-RO.min.js | 7 +
.../dist/locale/bootstrap-table-ru-RU.js | 72 +
.../dist/locale/bootstrap-table-ru-RU.min.js | 7 +
.../dist/locale/bootstrap-table-sk-SK.js | 37 +
.../dist/locale/bootstrap-table-sk-SK.min.js | 7 +
.../dist/locale/bootstrap-table-sv-SE.js | 37 +
.../dist/locale/bootstrap-table-sv-SE.min.js | 7 +
.../dist/locale/bootstrap-table-th-TH.js | 37 +
.../dist/locale/bootstrap-table-th-TH.min.js | 7 +
.../dist/locale/bootstrap-table-tr-TR.js | 41 +
.../dist/locale/bootstrap-table-tr-TR.min.js | 7 +
.../dist/locale/bootstrap-table-uk-UA.js | 73 +
.../dist/locale/bootstrap-table-uk-UA.min.js | 7 +
.../dist/locale/bootstrap-table-ur-PK.js | 37 +
.../dist/locale/bootstrap-table-ur-PK.min.js | 7 +
.../dist/locale/bootstrap-table-uz-Latn-UZ.js | 49 +
.../locale/bootstrap-table-uz-Latn-UZ.min.js | 7 +
.../dist/locale/bootstrap-table-vi-VN.js | 28 +
.../dist/locale/bootstrap-table-vi-VN.min.js | 7 +
.../dist/locale/bootstrap-table-zh-CN.js | 49 +
.../dist/locale/bootstrap-table-zh-CN.min.js | 7 +
.../dist/locale/bootstrap-table-zh-TW.js | 40 +
.../dist/locale/bootstrap-table-zh-TW.min.js | 7 +
.../themes/bulma/bootstrap-table-bulma.css | 349 +
.../themes/bulma/bootstrap-table-bulma.js | 943 +
.../bulma/bootstrap-table-bulma.min.css | 10 +
.../themes/bulma/bootstrap-table-bulma.min.js | 10 +
.../foundation/bootstrap-table-foundation.css | 326 +
.../foundation/bootstrap-table-foundation.js | 952 +
.../bootstrap-table-foundation.min.css | 10 +
.../bootstrap-table-foundation.min.js | 10 +
.../bootstrap-table-materialize.css | 317 +
.../bootstrap-table-materialize.js | 943 +
.../bootstrap-table-materialize.min.css | 10 +
.../bootstrap-table-materialize.min.js | 10 +
.../semantic/bootstrap-table-semantic.css | 333 +
.../semantic/bootstrap-table-semantic.js | 922 +
.../semantic/bootstrap-table-semantic.min.css | 10 +
.../semantic/bootstrap-table-semantic.min.js | 10 +
.../bootstrap-table-develop/docs/LICENSE | 319 +
.../bootstrap-table-develop/docs/README.md | 14 +
.../bootstrap-table-develop/docs/_i18n/en.yml | 30 +
.../_i18n/en/documentation/column-options.md | 289 +
.../docs/_i18n/en/documentation/events.md | 255 +
.../_i18n/en/documentation/localizations.md | 108 +
.../docs/_i18n/en/documentation/methods.md | 358 +
.../_i18n/en/documentation/table-options.md | 706 +
.../docs/_i18n/en/donate.md | 5 +
.../docs/_i18n/en/faq/faq.md | 59 +
.../docs/_i18n/en/footer.html | 26 +
.../docs/_i18n/en/getting-started/download.md | 40 +
.../docs/_i18n/en/getting-started/grunt.md | 29 +
.../docs/_i18n/en/getting-started/usage.md | 129 +
.../_i18n/en/getting-started/whats-include.md | 22 +
.../docs/_i18n/en/home/feature.md | 17 +
.../bootstrap-table-develop/docs/_i18n/es.yml | 30 +
.../_i18n/es/documentation/column-options.md | 264 +
.../docs/_i18n/es/documentation/events.md | 222 +
.../_i18n/es/documentation/localizations.md | 108 +
.../docs/_i18n/es/documentation/methods.md | 314 +
.../_i18n/es/documentation/table-options.md | 575 +
.../docs/_i18n/es/donate.md | 5 +
.../docs/_i18n/es/faq/faq.md | 59 +
.../docs/_i18n/es/footer.html | 26 +
.../docs/_i18n/es/getting-started/download.md | 40 +
.../docs/_i18n/es/getting-started/grunt.md | 29 +
.../docs/_i18n/es/getting-started/usage.md | 116 +
.../_i18n/es/getting-started/whats-include.md | 21 +
.../docs/_i18n/es/home/feature.md | 17 +
.../docs/_i18n/zh-cn.yml | 30 +
.../zh-cn/documentation/column-options.md | 268 +
.../docs/_i18n/zh-cn/documentation/events.md | 255 +
.../zh-cn/documentation/localizations.md | 95 +
.../docs/_i18n/zh-cn/documentation/methods.md | 331 +
.../zh-cn/documentation/table-options.md | 606 +
.../docs/_i18n/zh-cn/donate.md | 5 +
.../docs/_i18n/zh-cn/faq/faq.md | 57 +
.../docs/_i18n/zh-cn/footer.html | 26 +
.../_i18n/zh-cn/getting-started/download.md | 40 +
.../docs/_i18n/zh-cn/getting-started/grunt.md | 29 +
.../docs/_i18n/zh-cn/getting-started/usage.md | 116 +
.../zh-cn/getting-started/whats-include.md | 22 +
.../docs/_i18n/zh-cn/home/feature.md | 17 +
.../docs/_includes/footer.html | 19 +
.../docs/_includes/header.html | 53 +
.../docs/_includes/latest-release.md | 35 +
.../docs/_includes/nav.html | 63 +
.../docs/_includes/social-buttons.html | 39 +
.../docs/_layouts/default.html | 47 +
.../docs/_layouts/home.html | 18 +
.../docs/_plugins/markdown-tag.rb | 22 +
.../docs/_plugins/multiple-languages.rb | 153 +
.../docs/apple-touch-icon.png | Bin 0 -> 6140 bytes
.../assets/bootstrap/css/bootstrap-theme.css | 457 +
.../bootstrap/css/bootstrap-theme.css.map | 1 +
.../bootstrap/css/bootstrap-theme.min.css | 5 +
.../docs/assets/bootstrap/css/bootstrap.css | 6361 +++
.../assets/bootstrap/css/bootstrap.css.map | 1 +
.../assets/bootstrap/css/bootstrap.min.css | 5 +
.../fonts/glyphicons-halflings-regular.eot | Bin 0 -> 20335 bytes
.../fonts/glyphicons-halflings-regular.svg | 229 +
.../fonts/glyphicons-halflings-regular.ttf | Bin 0 -> 41280 bytes
.../fonts/glyphicons-halflings-regular.woff | Bin 0 -> 23320 bytes
.../docs/assets/bootstrap/js/bootstrap.js | 2320 +
.../docs/assets/bootstrap/js/bootstrap.min.js | 7 +
.../docs/assets/bootstrap/js/npm.js | 13 +
.../docs/assets/css/docs.min.css | 6 +
.../docs/assets/css/sidenav.css | 120 +
.../docs/assets/css/style.css | 50 +
.../docs/assets/flash/ZeroClipboard.swf | Bin 0 -> 2157 bytes
.../docs/assets/images/alipay.jpg | Bin 0 -> 98016 bytes
.../docs/assets/images/alipayLogo.png | Bin 0 -> 22926 bytes
.../docs/assets/images/paypalLogo.png | Bin 0 -> 4545 bytes
.../docs/assets/images/weixin.png | Bin 0 -> 87203 bytes
.../docs/assets/images/weixinLogo.png | Bin 0 -> 4973 bytes
.../docs/assets/js/common.js | 83 +
.../docs/assets/js/customize.min.js | 61 +
.../docs/assets/js/docs.min.js | 26 +
.../assets/js/ie-emulation-modes-warning.js | 51 +
.../assets/js/ie10-viewport-bug-workaround.js | 22 +
.../assets/js/ie8-responsive-file-warning.js | 13 +
.../docs/assets/js/jquery.min.js | 4 +
.../docs/assets/js/sidenav.js | 176 +
.../docs/data/README.md | 3 +
.../docs/data/data1/demo.response.json | 32 +
.../docs/data/data2/demo.response.json | 4002 ++
.../docs/data/data3/demo.response.json | 191 +
.../docs/data/data4/demo.response.json | 28 +
.../docs/data/data5/demo.response.json | 28 +
.../docs/data/extensions.json | 371 +
.../docs/dist/bootstrap-table-locale-all.js | 1928 +
.../dist/bootstrap-table-locale-all.min.js | 7 +
.../docs/dist/bootstrap-table.css | 313 +
.../docs/dist/bootstrap-table.js | 3094 ++
.../docs/dist/bootstrap-table.min.css | 1 +
.../docs/dist/bootstrap-table.min.js | 8 +
.../bootstrap-table-accent-neutralise.js | 182 +
.../bootstrap-table-accent-neutralise.min.js | 7 +
.../angular/bootstrap-table-angular.js | 107 +
.../angular/bootstrap-table-angular.min.js | 7 +
.../bootstrap-table-auto-refresh.css | 3 +
.../bootstrap-table-auto-refresh.js | 84 +
.../bootstrap-table-auto-refresh.min.js | 7 +
.../bootstrap-table-click-edit-row.css | 21 +
.../bootstrap-table-click-edit-row.js | 142 +
.../bootstrap-table-click-edit-row.min.js | 7 +
.../cookie/bootstrap-table-cookie.js | 434 +
.../cookie/bootstrap-table-cookie.min.js | 7 +
.../copy-rows/bootstrap-table-copy-rows.js | 102 +
.../bootstrap-table-copy-rows.min.js | 7 +
.../editable/bootstrap-table-editable.js | 146 +
.../editable/bootstrap-table-editable.min.js | 7 +
.../export/bootstrap-table-export.js | 131 +
.../export/bootstrap-table-export.min.js | 7 +
.../bootstrap-table-filter-control.css | 13 +
.../bootstrap-table-filter-control.js | 697 +
.../bootstrap-table-filter-control.min.js | 7 +
.../filter/bootstrap-table-filter.js | 67 +
.../filter/bootstrap-table-filter.min.js | 7 +
.../flat-json/bootstrap-table-flat-json.js | 62 +
.../bootstrap-table-flat-json.min.js | 7 +
.../group-by-v2/bootstrap-table-group-by.css | 7 +
.../group-by-v2/bootstrap-table-group-by.js | 226 +
.../bootstrap-table-group-by.min.js | 7 +
.../group-by/bootstrap-table-group-by.css | 53 +
.../group-by/bootstrap-table-group-by.js | 243 +
.../group-by/bootstrap-table-group-by.min.js | 7 +
.../bootstrap-table-i18n-enhance.js | 34 +
.../bootstrap-table-i18n-enhance.min.js | 7 +
.../key-events/bootstrap-table-key-events.js | 80 +
.../bootstrap-table-key-events.min.js | 7 +
.../mobile/bootstrap-table-mobile.js | 136 +
.../mobile/bootstrap-table-mobile.min.js | 7 +
.../bootstrap-table-multi-toggle.js | 88 +
.../bootstrap-table-multi-toggle.min.js | 7 +
.../bootstrap-table-multiple-search.js | 71 +
.../bootstrap-table-multiple-search.min.js | 7 +
...bootstrap-table-multiple-selection-row.css | 17 +
.../bootstrap-table-multiple-selection-row.js | 127 +
...tstrap-table-multiple-selection-row.min.js | 7 +
.../bootstrap-table-multiple-sort.js | 393 +
.../bootstrap-table-multiple-sort.min.js | 7 +
.../bootstrap-table-natural-sorting.js | 67 +
.../bootstrap-table-natural-sorting.min.js | 7 +
.../extensions/print/bootstrap-table-print.js | 133 +
.../print/bootstrap-table-print.min.js | 7 +
.../bootstrap-table-reorder-columns.js | 181 +
.../bootstrap-table-reorder-columns.min.js | 7 +
.../bootstrap-table-reorder-rows.css | 14 +
.../bootstrap-table-reorder-rows.js | 118 +
.../bootstrap-table-reorder-rows.min.js | 7 +
.../resizable/bootstrap-table-resizable.js | 74 +
.../bootstrap-table-resizable.min.js | 7 +
.../bootstrap-table-select2-filter.js | 303 +
.../bootstrap-table-select2-filter.min.js | 7 +
.../bootstrap-table-sticky-header.css | 22 +
.../bootstrap-table-sticky-header.js | 111 +
.../bootstrap-table-sticky-header.min.js | 7 +
.../toolbar/bootstrap-table-toolbar.js | 211 +
.../toolbar/bootstrap-table-toolbar.min.js | 7 +
.../bootstrap-table-tree-column.css | 1 +
.../bootstrap-table-tree-column.js | 130 +
.../bootstrap-table-tree-column.min.js | 7 +
.../docs/dist/locale/bootstrap-table-af-ZA.js | 40 +
.../dist/locale/bootstrap-table-af-ZA.min.js | 7 +
.../docs/dist/locale/bootstrap-table-ar-SA.js | 40 +
.../dist/locale/bootstrap-table-ar-SA.min.js | 7 +
.../docs/dist/locale/bootstrap-table-ca-ES.js | 44 +
.../dist/locale/bootstrap-table-ca-ES.min.js | 7 +
.../docs/dist/locale/bootstrap-table-cs-CZ.js | 44 +
.../dist/locale/bootstrap-table-cs-CZ.min.js | 7 +
.../docs/dist/locale/bootstrap-table-da-DK.js | 37 +
.../dist/locale/bootstrap-table-da-DK.min.js | 7 +
.../docs/dist/locale/bootstrap-table-de-DE.js | 43 +
.../dist/locale/bootstrap-table-de-DE.min.js | 7 +
.../docs/dist/locale/bootstrap-table-el-GR.js | 28 +
.../dist/locale/bootstrap-table-el-GR.min.js | 7 +
.../docs/dist/locale/bootstrap-table-en-US.js | 49 +
.../dist/locale/bootstrap-table-en-US.min.js | 7 +
.../docs/dist/locale/bootstrap-table-es-AR.js | 31 +
.../dist/locale/bootstrap-table-es-AR.min.js | 7 +
.../docs/dist/locale/bootstrap-table-es-CL.js | 44 +
.../dist/locale/bootstrap-table-es-CL.min.js | 7 +
.../docs/dist/locale/bootstrap-table-es-CR.js | 40 +
.../dist/locale/bootstrap-table-es-CR.min.js | 7 +
.../docs/dist/locale/bootstrap-table-es-ES.js | 43 +
.../dist/locale/bootstrap-table-es-ES.min.js | 7 +
.../docs/dist/locale/bootstrap-table-es-MX.js | 32 +
.../dist/locale/bootstrap-table-es-MX.min.js | 7 +
.../docs/dist/locale/bootstrap-table-es-NI.js | 40 +
.../dist/locale/bootstrap-table-es-NI.min.js | 7 +
.../docs/dist/locale/bootstrap-table-es-SP.js | 40 +
.../dist/locale/bootstrap-table-es-SP.min.js | 7 +
.../docs/dist/locale/bootstrap-table-et-EE.js | 43 +
.../dist/locale/bootstrap-table-et-EE.min.js | 7 +
.../docs/dist/locale/bootstrap-table-fa-IR.js | 43 +
.../dist/locale/bootstrap-table-fa-IR.min.js | 7 +
.../docs/dist/locale/bootstrap-table-fr-BE.js | 28 +
.../dist/locale/bootstrap-table-fr-BE.min.js | 7 +
.../docs/dist/locale/bootstrap-table-fr-FR.js | 41 +
.../dist/locale/bootstrap-table-fr-FR.min.js | 7 +
.../docs/dist/locale/bootstrap-table-he-IL.js | 43 +
.../dist/locale/bootstrap-table-he-IL.min.js | 7 +
.../docs/dist/locale/bootstrap-table-hr-HR.js | 44 +
.../dist/locale/bootstrap-table-hr-HR.min.js | 7 +
.../docs/dist/locale/bootstrap-table-hu-HU.js | 43 +
.../dist/locale/bootstrap-table-hu-HU.min.js | 7 +
.../docs/dist/locale/bootstrap-table-id-ID.js | 49 +
.../dist/locale/bootstrap-table-id-ID.min.js | 7 +
.../docs/dist/locale/bootstrap-table-it-IT.js | 52 +
.../dist/locale/bootstrap-table-it-IT.min.js | 7 +
.../docs/dist/locale/bootstrap-table-ja-JP.js | 43 +
.../dist/locale/bootstrap-table-ja-JP.min.js | 7 +
.../docs/dist/locale/bootstrap-table-ka-GE.js | 40 +
.../dist/locale/bootstrap-table-ka-GE.min.js | 7 +
.../docs/dist/locale/bootstrap-table-ko-KR.js | 37 +
.../dist/locale/bootstrap-table-ko-KR.min.js | 7 +
.../docs/dist/locale/bootstrap-table-ms-MY.js | 43 +
.../dist/locale/bootstrap-table-ms-MY.min.js | 7 +
.../docs/dist/locale/bootstrap-table-nb-NO.js | 37 +
.../dist/locale/bootstrap-table-nb-NO.min.js | 7 +
.../docs/dist/locale/bootstrap-table-nl-NL.js | 52 +
.../dist/locale/bootstrap-table-nl-NL.min.js | 7 +
.../docs/dist/locale/bootstrap-table-pl-PL.js | 37 +
.../dist/locale/bootstrap-table-pl-PL.min.js | 7 +
.../docs/dist/locale/bootstrap-table-pt-BR.js | 41 +
.../dist/locale/bootstrap-table-pt-BR.min.js | 7 +
.../docs/dist/locale/bootstrap-table-pt-PT.js | 43 +
.../dist/locale/bootstrap-table-pt-PT.min.js | 7 +
.../docs/dist/locale/bootstrap-table-ro-RO.js | 43 +
.../dist/locale/bootstrap-table-ro-RO.min.js | 7 +
.../docs/dist/locale/bootstrap-table-ru-RU.js | 72 +
.../dist/locale/bootstrap-table-ru-RU.min.js | 7 +
.../docs/dist/locale/bootstrap-table-sk-SK.js | 37 +
.../dist/locale/bootstrap-table-sk-SK.min.js | 7 +
.../docs/dist/locale/bootstrap-table-sv-SE.js | 37 +
.../dist/locale/bootstrap-table-sv-SE.min.js | 7 +
.../docs/dist/locale/bootstrap-table-th-TH.js | 37 +
.../dist/locale/bootstrap-table-th-TH.min.js | 7 +
.../docs/dist/locale/bootstrap-table-tr-TR.js | 41 +
.../dist/locale/bootstrap-table-tr-TR.min.js | 7 +
.../docs/dist/locale/bootstrap-table-uk-UA.js | 73 +
.../dist/locale/bootstrap-table-uk-UA.min.js | 7 +
.../docs/dist/locale/bootstrap-table-ur-PK.js | 37 +
.../dist/locale/bootstrap-table-ur-PK.min.js | 7 +
.../dist/locale/bootstrap-table-uz-Latn-UZ.js | 49 +
.../locale/bootstrap-table-uz-Latn-UZ.min.js | 7 +
.../docs/dist/locale/bootstrap-table-vi-VN.js | 28 +
.../dist/locale/bootstrap-table-vi-VN.min.js | 7 +
.../docs/dist/locale/bootstrap-table-zh-CN.js | 46 +
.../dist/locale/bootstrap-table-zh-CN.min.js | 7 +
.../docs/dist/locale/bootstrap-table-zh-TW.js | 40 +
.../dist/locale/bootstrap-table-zh-TW.min.js | 7 +
.../docs/documentation.md | 16 +
.../bootstrap-table-develop/docs/donate.md | 97 +
.../bootstrap-table-develop/docs/examples.md | 8 +
.../docs/extensions.md | 91 +
.../bootstrap-table-develop/docs/faq.md | 8 +
.../bootstrap-table-develop/docs/favicon.ico | Bin 0 -> 5430 bytes
.../docs/getting-started.md | 14 +
.../bootstrap-table-develop/docs/index.md | 38 +
.../bootstrap-table-develop/docs/robots.txt | 9 +
.../bootstrap-table-develop/docs/sitemap.xml | 23 +
.../bootstrap-table-develop/index.d.ts | 7 +
.../bootstrap-table-develop/package.json | 49 +
.../bootstrap-table-develop/rollup.config.js | 113 +
.../bootstrap-table-develop/site/CNAME | 1 +
.../bootstrap-table-develop/site/LICENSE | 319 +
.../site/_data/core-team.yml | 8 +
.../site/_data/nav.yml | 63 +
.../site/_data/themes.yml | 29 +
.../site/_data/translations.yml | 0
.../site/_includes/ads.html | 10 +
.../site/_includes/analytics.html | 8 +
.../site/_includes/docs-navbar.html | 70 +
.../site/_includes/docs-sidebar.html | 48 +
.../site/_includes/favicons.html | 2 +
.../site/_includes/footer.html | 19 +
.../site/_includes/header.html | 25 +
.../site/_includes/icons/download.svg | 1 +
.../site/_includes/icons/facebook.svg | 1 +
.../site/_includes/icons/github.svg | 1 +
.../site/_includes/icons/import.svg | 1 +
.../site/_includes/icons/lightning.svg | 1 +
.../site/_includes/icons/linkedin.svg | 1 +
.../site/_includes/icons/mail.svg | 1 +
.../site/_includes/icons/menu.svg | 1 +
.../site/_includes/icons/opencollective.svg | 1 +
.../site/_includes/icons/twitter.svg | 1 +
.../site/_includes/opencollective.html | 42 +
.../site/_includes/scripts.html | 15 +
.../site/_includes/skippy.html | 3 +
.../site/_includes/stylesheet.html | 12 +
.../site/_layouts/default.html | 22 +
.../site/_layouts/docs.html | 34 +
.../site/_layouts/home.html | 16 +
.../site/_layouts/simple.html | 15 +
.../site/assets/css/docs.min.css | 8 +
.../site/assets/css/docs.min.css.map | 1 +
.../site/assets/css/style.css | 204 +
.../site/assets/images/alipay.jpg | Bin 0 -> 104403 bytes
.../site/assets/images/alipayLogo.png | Bin 0 -> 22275 bytes
.../site/assets/images/bootstrap3.png | Bin 0 -> 157318 bytes
.../site/assets/images/bootstrap4.png | Bin 0 -> 208297 bytes
.../site/assets/images/bulma.png | Bin 0 -> 602802 bytes
.../site/assets/images/foundation.png | Bin 0 -> 286484 bytes
.../site/assets/images/materialize.png | Bin 0 -> 112738 bytes
.../site/assets/images/paypalLogo.png | Bin 0 -> 4245 bytes
.../site/assets/images/semantic.png | Bin 0 -> 465545 bytes
.../site/assets/images/weixin.png | Bin 0 -> 85427 bytes
.../site/assets/images/weixinLogo.png | Bin 0 -> 3779 bytes
.../site/assets/js/docs.min.js | 22 +
.../site/docs/about/license.md | 34 +
.../site/docs/about/overview.md | 16 +
.../site/docs/about/team.md | 21 +
.../site/docs/about/translations.md | 18 +
.../site/docs/api/column-options.md | 505 +
.../site/docs/api/events.md | 374 +
.../site/docs/api/localizations.md | 175 +
.../site/docs/api/methods.md | 658 +
.../site/docs/api/table-options.md | 1546 +
.../site/docs/extensions/accent-neutralise.md | 34 +
.../site/docs/extensions/addrbar.md | 57 +
.../site/docs/extensions/auto-refresh.md | 63 +
.../site/docs/extensions/cell-input.md | 54 +
.../site/docs/extensions/cookie.md | 121 +
.../site/docs/extensions/copy-rows.md | 63 +
.../site/docs/extensions/defer-url.md | 25 +
.../site/docs/extensions/editable.md | 88 +
.../site/docs/extensions/export.md | 99 +
.../site/docs/extensions/filter-control.md | 187 +
.../site/docs/extensions/fixed-columns.md | 36 +
.../site/docs/extensions/group-by-v2.md | 52 +
.../site/docs/extensions/i18n-enhance.md | 34 +
.../site/docs/extensions/key-events.md | 34 +
.../site/docs/extensions/mobile.md | 67 +
.../site/docs/extensions/multiple-sort.md | 178 +
.../site/docs/extensions/natural-sorting.md | 36 +
.../site/docs/extensions/page-jump-to.md | 26 +
.../site/docs/extensions/print.md | 103 +
.../site/docs/extensions/reorder-columns.md | 59 +
.../site/docs/extensions/reorder-rows.md | 112 +
.../site/docs/extensions/resizable.md | 32 +
.../site/docs/extensions/sticky-header.md | 41 +
.../site/docs/extensions/toolbar.md | 83 +
.../site/docs/extensions/treegrid.md | 58 +
.../bootstrap-table-develop/site/docs/faq.md | 67 +
.../docs/getting-started/browsers-devices.md | 33 +
.../site/docs/getting-started/build-tools.md | 49 +
.../site/docs/getting-started/contents.md | 40 +
.../site/docs/getting-started/download.md | 49 +
.../site/docs/getting-started/introduction.md | 102 +
.../site/docs/getting-started/usage.md | 137 +
.../site/docs/vuejs/browser.md | 142 +
.../site/docs/vuejs/component.md | 65 +
.../site/docs/vuejs/introduction.md | 50 +
.../site/docs/vuejs/webpack.md | 188 +
.../bootstrap-table-develop/site/donate.md | 60 +
.../bootstrap-table-develop/site/favicon.png | Bin 0 -> 61067 bytes
.../bootstrap-table-develop/site/index.html | 104 +
.../bootstrap-table-develop/site/news.md | 257 +
.../bootstrap-table-develop/site/robots.txt | 9 +
.../site/themes/bootstrap3.md | 95 +
.../site/themes/bulma.md | 99 +
.../site/themes/foundation.md | 100 +
.../site/themes/index.md | 33 +
.../site/themes/materialize.md | 100 +
.../site/themes/semantic.md | 100 +
.../bootstrap-table-develop/src/.babelrc | 12 +
.../src/bootstrap-table.css | 318 +
.../src/bootstrap-table.js | 3283 ++
.../src/bootstrap-table.scss | 8 +
.../src/constants/index.js | 507 +
.../extensions/accent-neutralise/README.md | 17 +
.../bootstrap-table-accent-neutralise.js | 182 +
.../accent-neutralise/extension.json | 17 +
.../addrbar/bootstrap-table-addrbar.js | 107 +
.../angular/bootstrap-table-angular.js | 107 +
.../src/extensions/auto-refresh/README.md | 47 +
.../bootstrap-table-auto-refresh.css | 3 +
.../bootstrap-table-auto-refresh.js | 84 +
.../extensions/auto-refresh/extension.json | 17 +
.../cell-input/bootstrap-table-cell-input.css | 12 +
.../cell-input/bootstrap-table-cell-input.js | 197 +
.../src/extensions/cell-input/extension.json | 17 +
.../src/extensions/click-edit-row/README.md | 36 +
.../bootstrap-table-click-edit-row.css | 21 +
.../bootstrap-table-click-edit-row.js | 142 +
.../src/extensions/cookie/README.md | 80 +
.../cookie/bootstrap-table-cookie.js | 413 +
.../src/extensions/cookie/extension.json | 17 +
.../src/extensions/copy-rows/README.md | 41 +
.../copy-rows/bootstrap-table-copy-rows.js | 102 +
.../src/extensions/copy-rows/extension.json | 17 +
.../src/extensions/defer-url/README.md | 17 +
.../defer-url/bootstrap-table-defer-url.js | 32 +
.../src/extensions/defer-url/extension.json | 17 +
.../src/extensions/editable/README.md | 71 +
.../editable/bootstrap-table-editable.js | 146 +
.../src/extensions/editable/extension.json | 17 +
.../src/extensions/export/README.md | 38 +
.../export/bootstrap-table-export.js | 179 +
.../src/extensions/export/extension.json | 17 +
.../src/extensions/filter-control/README.md | 104 +
.../bootstrap-table-filter-control.css | 13 +
.../bootstrap-table-filter-control.js | 744 +
.../extensions/filter-control/extension.json | 17 +
.../src/extensions/filter/README.md | 17 +
.../filter/bootstrap-table-filter.js | 67 +
.../src/extensions/filter/extension.json | 17 +
.../bootstrap-table-fixed-columns.css | 27 +
.../bootstrap-table-fixed-columns.js | 113 +
.../src/extensions/flat-json/README.md | 23 +
.../flat-json/bootstrap-table-flat-json.js | 62 +
.../src/extensions/flat-json/extension.json | 17 +
.../src/extensions/group-by-v2/README.md | 24 +
.../group-by-v2/bootstrap-table-group-by.css | 7 +
.../group-by-v2/bootstrap-table-group-by.js | 226 +
.../src/extensions/group-by-v2/extension.json | 12 +
.../src/extensions/group-by/README.md | 62 +
.../group-by/bootstrap-table-group-by.css | 53 +
.../group-by/bootstrap-table-group-by.js | 243 +
.../src/extensions/group-by/extension.json | 17 +
.../src/extensions/i18n-enhance/README.md | 28 +
.../bootstrap-table-i18n-enhance.js | 34 +
.../extensions/i18n-enhance/extension.json | 17 +
.../src/extensions/key-events/README.md | 24 +
.../key-events/bootstrap-table-key-events.js | 80 +
.../src/extensions/key-events/extension.json | 17 +
.../src/extensions/mobile/README.md | 41 +
.../mobile/bootstrap-table-mobile.js | 136 +
.../src/extensions/mobile/extension.json | 17 +
.../extensions/multi-column-toggle/README.md | 36 +
.../bootstrap-table-multi-toggle.js | 88 +
.../multi-column-toggle/extension.json | 17 +
.../src/extensions/multiple-search/README.md | 23 +
.../bootstrap-table-multiple-search.js | 71 +
.../extensions/multiple-search/extension.json | 17 +
.../multiple-selection-row/README.md | 33 +
...bootstrap-table-multiple-selection-row.css | 17 +
.../bootstrap-table-multiple-selection-row.js | 127 +
.../multiple-selection-row/extension.json | 17 +
.../src/extensions/multiple-sort/README.md | 109 +
.../bootstrap-table-multiple-sort.js | 412 +
.../extensions/multiple-sort/extension.json | 17 +
.../src/extensions/natural-sorting/README.md | 27 +
.../bootstrap-table-natural-sorting.js | 67 +
.../extensions/natural-sorting/extension.json | 17 +
.../bootstrap-table-page-jump-to.css | 11 +
.../bootstrap-table-page-jump-to.js | 43 +
.../src/extensions/page-jump/README.md | 33 +
.../page-jump/bootstrap-table-pagejump.css | 49 +
.../page-jump/bootstrap-table-pagejump.js | 57 +
.../src/extensions/page-jump/demo.png | Bin 0 -> 2439 bytes
.../src/extensions/page-jump/index.html | 113 +
.../src/extensions/page-jumpto/README.md | 32 +
.../page-jumpto/bootstrap-table-jumpto.css | 8 +
.../page-jumpto/bootstrap-table-jumpto.js | 50 +
.../src/extensions/pipeline/LICENSE | 21 +
.../src/extensions/pipeline/README.md | 92 +
.../pipeline/bootstrap-table-pipeline.js | 320 +
.../src/extensions/pipeline/extension.json | 18 +
.../src/extensions/print/README.md | 65 +
.../extensions/print/bootstrap-table-print.js | 149 +
.../src/extensions/reorder-columns/README.md | 41 +
.../bootstrap-table-reorder-columns.js | 181 +
.../extensions/reorder-columns/extension.json | 17 +
.../src/extensions/reorder-rows/README.md | 74 +
.../bootstrap-table-reorder-rows.css | 14 +
.../bootstrap-table-reorder-rows.js | 118 +
.../extensions/reorder-rows/extension.json | 17 +
.../src/extensions/resizable/README.md | 77 +
.../resizable/bootstrap-table-resizable.js | 75 +
.../src/extensions/resizable/extension.json | 17 +
.../src/extensions/select2-filter/README.md | 65 +
.../bootstrap-table-select2-filter.js | 332 +
.../extensions/select2-filter/extension.json | 17 +
.../src/extensions/sticky-header/README.md | 24 +
.../bootstrap-table-sticky-header.css | 22 +
.../bootstrap-table-sticky-header.js | 118 +
.../extensions/sticky-header/extension.json | 17 +
.../src/extensions/toolbar/README.md | 53 +
.../toolbar/bootstrap-table-toolbar.js | 211 +
.../src/extensions/toolbar/extension.json | 17 +
.../bootstrap-table-tree-column.css | 1 +
.../bootstrap-table-tree-column.js | 130 +
.../bootstrap-table-tree-column.less | 43 +
.../src/extensions/tree-column/extension.json | 17 +
.../src/extensions/tree-column/icon.png | Bin 0 -> 346 bytes
.../src/extensions/treegrid/README.md | 23 +
.../treegrid/bootstrap-table-treegrid.js | 95 +
.../src/extensions/treegrid/demo.png | Bin 0 -> 54463 bytes
.../src/extensions/treegrid/extension.json | 17 +
.../src/locale/README.md | 179 +
.../src/locale/bootstrap-table-af-ZA.js | 40 +
.../src/locale/bootstrap-table-ar-SA.js | 40 +
.../src/locale/bootstrap-table-ca-ES.js | 44 +
.../src/locale/bootstrap-table-cs-CZ.js | 44 +
.../src/locale/bootstrap-table-da-DK.js | 37 +
.../src/locale/bootstrap-table-de-DE.js | 43 +
.../src/locale/bootstrap-table-el-GR.js | 28 +
.../src/locale/bootstrap-table-en-US.js | 49 +
.../locale/bootstrap-table-en-US.js.template | 49 +
.../src/locale/bootstrap-table-es-AR.js | 31 +
.../src/locale/bootstrap-table-es-CL.js | 44 +
.../src/locale/bootstrap-table-es-CR.js | 40 +
.../src/locale/bootstrap-table-es-ES.js | 43 +
.../src/locale/bootstrap-table-es-MX.js | 32 +
.../src/locale/bootstrap-table-es-NI.js | 40 +
.../src/locale/bootstrap-table-es-SP.js | 40 +
.../src/locale/bootstrap-table-et-EE.js | 43 +
.../src/locale/bootstrap-table-eu-EU.js | 43 +
.../src/locale/bootstrap-table-fa-IR.js | 43 +
.../src/locale/bootstrap-table-fi-FI.js | 91 +
.../src/locale/bootstrap-table-fr-BE.js | 28 +
.../src/locale/bootstrap-table-fr-CH.js | 91 +
.../src/locale/bootstrap-table-fr-FR.js | 95 +
.../src/locale/bootstrap-table-fr-LU.js | 91 +
.../src/locale/bootstrap-table-he-IL.js | 43 +
.../src/locale/bootstrap-table-hr-HR.js | 44 +
.../src/locale/bootstrap-table-hu-HU.js | 43 +
.../src/locale/bootstrap-table-id-ID.js | 49 +
.../src/locale/bootstrap-table-it-IT.js | 52 +
.../src/locale/bootstrap-table-ja-JP.js | 43 +
.../src/locale/bootstrap-table-ka-GE.js | 40 +
.../src/locale/bootstrap-table-ko-KR.js | 37 +
.../src/locale/bootstrap-table-ms-MY.js | 43 +
.../src/locale/bootstrap-table-nb-NO.js | 37 +
.../src/locale/bootstrap-table-nl-BE.js | 91 +
.../src/locale/bootstrap-table-nl-NL.js | 52 +
.../src/locale/bootstrap-table-pl-PL.js | 37 +
.../src/locale/bootstrap-table-pt-BR.js | 41 +
.../src/locale/bootstrap-table-pt-PT.js | 43 +
.../src/locale/bootstrap-table-ro-RO.js | 43 +
.../src/locale/bootstrap-table-ru-RU.js | 72 +
.../src/locale/bootstrap-table-sk-SK.js | 49 +
.../src/locale/bootstrap-table-sv-SE.js | 37 +
.../src/locale/bootstrap-table-th-TH.js | 37 +
.../src/locale/bootstrap-table-tr-TR.js | 41 +
.../src/locale/bootstrap-table-uk-UA.js | 73 +
.../src/locale/bootstrap-table-ur-PK.js | 37 +
.../src/locale/bootstrap-table-uz-Latn-UZ.js | 49 +
.../src/locale/bootstrap-table-vi-VN.js | 28 +
.../src/locale/bootstrap-table-zh-CN.js | 49 +
.../src/locale/bootstrap-table-zh-TW.js | 40 +
.../src/themes/bootstrap/variables.scss | 5 +
.../src/themes/bulma/bootstrap-table-bulma.js | 74 +
.../themes/bulma/bootstrap-table-bulma.scss | 83 +
.../src/themes/bulma/variables.scss | 5 +
.../foundation/bootstrap-table-foundation.js | 89 +
.../bootstrap-table-foundation.scss | 65 +
.../src/themes/foundation/variables.scss | 5 +
.../bootstrap-table-materialize.js | 77 +
.../bootstrap-table-materialize.scss | 49 +
.../src/themes/materialize/variables.scss | 5 +
.../semantic/bootstrap-table-semantic.js | 52 +
.../semantic/bootstrap-table-semantic.scss | 63 +
.../src/themes/semantic/variables.scss | 5 +
.../src/themes/theme.scss | 359 +
.../src/utils/index.js | 316 +
.../src/virtual-scroll/index.js | 123 +
.../src/vue/BootstrapTable.vue | 85 +
.../bootstrap-table-develop/src/vue/index.js | 3 +
.../bootstrap-table-develop/tools/README.md | 12 +
.../tools/check-api.js | 121 +
.../tools/check-locale.js | 69 +
.../plugins/bootstrap-toastr/toastr.js.map | 1 +
.../plugins/bootstrap-toastr/toastr.min.css | 6 +
.../plugins/bootstrap-toastr/toastr.min.js | 7 +
.../bak/bootstrap-treeview.min.css | 1 +
.../bak/bootstrap-treeview.min.js | 1 +
.../bootstrap-treeview/bootstrap-treeview.js | 1951 +
.../bootstrap-treeview.min.css | 1 +
.../bootstrapValidator.min.css | 11 +
.../bootstrapValidator.min.js | 8231 ++++
.../.gitignore | 2 +
.../tableExport.jquery.plugin-master/LICENSE | 24 +
.../README.md | 305 +
.../bower.json | 38 +
.../html2canvas.js | 3010 ++
.../jquery.base64.js | 190 +
.../jspdf/jspdf.js | 303 +
.../jspdf/libs/base64.js | 143 +
.../jspdf/libs/sprintf.js | 152 +
.../libs/FileSaver/FileSaver.min.js | 8 +
.../libs/FileSaver/LICENSE.md | 11 +
.../libs/es6-promise/LICENSE | 19 +
.../libs/es6-promise/es6-promise.auto.min.js | 1 +
.../libs/html2canvas/LICENSE | 22 +
.../libs/html2canvas/html2canvas.min.js | 6 +
.../libs/js-xlsx/LICENSE | 201 +
.../libs/js-xlsx/xlsx.core.min.js | 16 +
.../libs/jsPDF-AutoTable/LICENSE.txt | 20 +
.../jsPDF-AutoTable/jspdf.plugin.autotable.js | 10 +
.../libs/jsPDF/MIT-LICENSE.txt | 20 +
.../libs/jsPDF/jspdf.min.js | 197 +
.../libs/pdfmake/LICENSE | 20 +
.../libs/pdfmake/mirza_fonts.js | 6 +
.../libs/pdfmake/pdfmake.min.js | 31 +
.../libs/pdfmake/vfs_fonts.js | 7 +
.../package.json | 39 +
.../tableExport.jquery.json | 1 +
.../tableExport.js | 2311 +
.../tableExport.min.js | 82 +
.../test/arabicExcel.html | 181 +
.../test/arabicPdfmake.html | 192 +
.../test/bootstrap.html | 100 +
.../test/bootstrap2.html | 107 +
.../test/bootstrap3.html | 81 +
.../test/bootstrap3.json | 1 +
.../test/bootstrap4.html | 79 +
.../test/cssExcel.html | 55 +
.../test/cssPdf.html | 52 +
.../test/icons/csv.png | Bin 0 -> 3418 bytes
.../test/icons/json.png | Bin 0 -> 6026 bytes
.../test/icons/pdf.png | Bin 0 -> 2667 bytes
.../test/icons/png.png | Bin 0 -> 2754 bytes
.../test/icons/sql.png | Bin 0 -> 408 bytes
.../test/icons/txt.png | Bin 0 -> 2642 bytes
.../test/icons/word.png | Bin 0 -> 3257 bytes
.../test/icons/xls.png | Bin 0 -> 5564 bytes
.../test/icons/xml.png | Bin 0 -> 2995 bytes
.../test/index.html | 5913 +++
.../test/massExcel.html | 69 +
.../test/multipleExcel.html | 982 +
.../test/pdfmake.html | 304 +
.../test/performance.html | 16591 +++++++
.../test/selectedRows.html | 297 +
.../test/sidebyside.html | 113 +
.../test/singleExcel.html | 84 +
.../test/tableExport.json | 1 +
.../tools/minify2.py | 90 +
.../tools/minify3.py | 90 +
.../timepicker/bootstrap-timepicker.css | 146 +
.../timepicker/bootstrap-timepicker.js | 1177 +
.../timepicker/bootstrap-timepicker.min.css | 10 +
.../timepicker/bootstrap-timepicker.min.js | 5 +
src/main/webapp/static/css/comm.css | 150 +
src/main/webapp/static/css/layui.css | 5016 ++
src/main/webapp/static/css/spin.css | 26 +
src/main/webapp/static/css/style.css | 261 +
src/main/webapp/static/favicon.ico | Bin 0 -> 90022 bytes
src/main/webapp/static/img/load.gif | Bin 0 -> 7050 bytes
.../static/jquery-loading-spin-js/.gitignore | 1 +
.../static/jquery-loading-spin-js/LICENSE.txt | 21 +
.../static/jquery-loading-spin-js/Makefile | 9 +
.../static/jquery-loading-spin-js/README.md | 21 +
.../jquery-loading-spin-js/assets/bg.png | Bin 0 -> 17908 bytes
.../assets/browsers.png | Bin 0 -> 34450 bytes
.../assets/crosshair.gif | Bin 0 -> 13167 bytes
.../assets/fd-slider/fd-slider-tooltip.css | 117 +
.../assets/fd-slider/fd-slider.css | 143 +
.../assets/fd-slider/fd-slider.js | 1212 +
.../jquery-loading-spin-js/assets/github.gif | Bin 0 -> 1298 bytes
.../jquery-loading-spin-js/assets/main.css | 166 +
.../assets/prettify.css | 49 +
.../jquery-loading-spin-js/assets/prettify.js | 28 +
.../jquery-loading-spin-js/assets/preview.jpg | Bin 0 -> 12063 bytes
.../jquery-loading-spin-js/assets/ribbon.png | Bin 0 -> 7660 bytes
.../jquery-loading-spin-js/component.json | 11 +
.../jquery-loading-spin-js/dist/spin.js | 320 +
.../jquery-loading-spin-js/dist/spin.min.js | 2 +
.../static/jquery-loading-spin-js/favicon.ico | Bin 0 -> 10806 bytes
.../static/jquery-loading-spin-js/index.html | 274 +
.../jquery-loading-spin-js/index.html.bak | 128 +
.../static/jquery-loading-spin-js/jquery.js | 9272 ++++
.../static/jquery-loading-spin-js/spin.js | 320 +
.../webapp/static/js/beHospList/beHospList.js | 462 +
src/main/webapp/static/js/comm.js | 98 +
.../static/js/confirm/jquery-confirm.min.css | 9 +
.../static/js/confirm/jquery-confirm.min.js | 10 +
src/main/webapp/static/js/echarts.js | 20 +
src/main/webapp/static/js/echarts.min.js | 22 +
.../webapp/static/js/flowInfo/flowInfoList.js | 217 +
.../static/js/holidaySet/holidaySetList.js | 437 +
.../js/hospitalCommom/hospitalCommom.js | 947 +
.../static/js/hospitalCommom/pinying.js | 490 +
.../static/js/hospitalLoadPdf/loadPdf.js | 157 +
src/main/webapp/static/js/jquery-1.4.4.min.js | 167 +
src/main/webapp/static/js/jquery-3.2.1.js | 10253 ++++
src/main/webapp/static/js/jquery-3.2.1.min.js | 4 +
src/main/webapp/static/js/jquery-3.3.1.js | 10364 ++++
src/main/webapp/static/js/jquery-ui.min.js | 13 +
src/main/webapp/static/js/jquery.media.js | 511 +
.../js/lastVerifyList/lastVerifyList.js | 458 +
.../js/medicalRecallList/medicalRecallList.js | 364 +
src/main/webapp/static/js/menu.js | 281 +
src/main/webapp/static/js/modernizr.js | 1265 +
src/main/webapp/static/js/pyAndWb.js | 502 +
.../webapp/static/js/showRecord/showRecord.js | 29 +
.../static/js/showRecord/showRecordIframe.js | 85 +
.../js/showRecord/showRecordIframeCommom.js | 18 +
src/main/webapp/static/js/spin.js | 320 +
src/main/webapp/static/js/spin.min.js | 2 +
.../static/js/statistics/finalStatistics.js | 142 +
.../js/statistics/finalStatisticsDetail.js | 206 +
.../static/js/statistics/firstStatistics.js | 142 +
.../static/js/statistics/getDeptCommom.js | 15 +
.../webapp/static/js/statistics/printCount.js | 151 +
.../webapp/static/js/statistics/printInfo.js | 187 +
.../webapp/static/js/statistics/scanCount.js | 127 +
.../webapp/static/js/statistics/scanInfo.js | 175 +
.../static/js/statistics/statisticsCommom.js | 139 +
.../static/js/statistics/statisticsDetail.js | 210 +
src/main/webapp/static/js/tree-select.js | 285 +
.../webapp/static/js/vCount/doctorFileList.js | 39 +
.../static/js/vCount/doctorFileListIframe.js | 22 +
src/main/webapp/static/pdfjs/LICENSE | 177 +
src/main/webapp/static/pdfjs/build/pdf.js | 8021 ++++
.../webapp/static/pdfjs/build/pdf.worker.js | 39372 ++++++++++++++++
src/main/webapp/static/pdfjs/web/bootstrap.js | 2580 +
.../static/pdfjs/web/cmaps/78-EUC-H.bcmap | Bin 0 -> 2404 bytes
.../static/pdfjs/web/cmaps/78-EUC-V.bcmap | Bin 0 -> 173 bytes
.../webapp/static/pdfjs/web/cmaps/78-H.bcmap | Bin 0 -> 2379 bytes
.../static/pdfjs/web/cmaps/78-RKSJ-H.bcmap | Bin 0 -> 2398 bytes
.../static/pdfjs/web/cmaps/78-RKSJ-V.bcmap | Bin 0 -> 173 bytes
.../webapp/static/pdfjs/web/cmaps/78-V.bcmap | Bin 0 -> 169 bytes
.../static/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap | Bin 0 -> 2651 bytes
.../static/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap | Bin 0 -> 290 bytes
.../static/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap | Bin 0 -> 905 bytes
.../static/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap | Bin 0 -> 721 bytes
.../static/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap | Bin 0 -> 290 bytes
.../static/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap | Bin 0 -> 715 bytes
.../static/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap | Bin 0 -> 291 bytes
.../static/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap | Bin 0 -> 982 bytes
.../static/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap | Bin 0 -> 260 bytes
.../webapp/static/pdfjs/web/cmaps/Add-H.bcmap | Bin 0 -> 2419 bytes
.../static/pdfjs/web/cmaps/Add-RKSJ-H.bcmap | Bin 0 -> 2413 bytes
.../static/pdfjs/web/cmaps/Add-RKSJ-V.bcmap | Bin 0 -> 287 bytes
.../webapp/static/pdfjs/web/cmaps/Add-V.bcmap | Bin 0 -> 282 bytes
.../static/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap | Bin 0 -> 317 bytes
.../static/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap | Bin 0 -> 371 bytes
.../static/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap | Bin 0 -> 376 bytes
.../static/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap | Bin 0 -> 401 bytes
.../static/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap | Bin 0 -> 405 bytes
.../static/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap | Bin 0 -> 406 bytes
.../static/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap | Bin 0 -> 406 bytes
.../pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap | Bin 0 -> 41193 bytes
.../static/pdfjs/web/cmaps/Adobe-GB1-0.bcmap | Bin 0 -> 217 bytes
.../static/pdfjs/web/cmaps/Adobe-GB1-1.bcmap | Bin 0 -> 250 bytes
.../static/pdfjs/web/cmaps/Adobe-GB1-2.bcmap | Bin 0 -> 465 bytes
.../static/pdfjs/web/cmaps/Adobe-GB1-3.bcmap | Bin 0 -> 470 bytes
.../static/pdfjs/web/cmaps/Adobe-GB1-4.bcmap | Bin 0 -> 601 bytes
.../static/pdfjs/web/cmaps/Adobe-GB1-5.bcmap | Bin 0 -> 625 bytes
.../pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap | Bin 0 -> 33974 bytes
.../pdfjs/web/cmaps/Adobe-Japan1-0.bcmap | Bin 0 -> 225 bytes
.../pdfjs/web/cmaps/Adobe-Japan1-1.bcmap | Bin 0 -> 226 bytes
.../pdfjs/web/cmaps/Adobe-Japan1-2.bcmap | Bin 0 -> 233 bytes
.../pdfjs/web/cmaps/Adobe-Japan1-3.bcmap | Bin 0 -> 242 bytes
.../pdfjs/web/cmaps/Adobe-Japan1-4.bcmap | Bin 0 -> 337 bytes
.../pdfjs/web/cmaps/Adobe-Japan1-5.bcmap | Bin 0 -> 430 bytes
.../pdfjs/web/cmaps/Adobe-Japan1-6.bcmap | Bin 0 -> 485 bytes
.../pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap | Bin 0 -> 40951 bytes
.../pdfjs/web/cmaps/Adobe-Korea1-0.bcmap | Bin 0 -> 241 bytes
.../pdfjs/web/cmaps/Adobe-Korea1-1.bcmap | Bin 0 -> 386 bytes
.../pdfjs/web/cmaps/Adobe-Korea1-2.bcmap | Bin 0 -> 391 bytes
.../pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap | Bin 0 -> 23293 bytes
.../webapp/static/pdfjs/web/cmaps/B5-H.bcmap | Bin 0 -> 1086 bytes
.../webapp/static/pdfjs/web/cmaps/B5-V.bcmap | Bin 0 -> 142 bytes
.../static/pdfjs/web/cmaps/B5pc-H.bcmap | Bin 0 -> 1099 bytes
.../static/pdfjs/web/cmaps/B5pc-V.bcmap | Bin 0 -> 144 bytes
.../static/pdfjs/web/cmaps/CNS-EUC-H.bcmap | Bin 0 -> 1780 bytes
.../static/pdfjs/web/cmaps/CNS-EUC-V.bcmap | Bin 0 -> 1920 bytes
.../static/pdfjs/web/cmaps/CNS1-H.bcmap | Bin 0 -> 706 bytes
.../static/pdfjs/web/cmaps/CNS1-V.bcmap | Bin 0 -> 143 bytes
.../static/pdfjs/web/cmaps/CNS2-H.bcmap | Bin 0 -> 504 bytes
.../static/pdfjs/web/cmaps/CNS2-V.bcmap | 3 +
.../static/pdfjs/web/cmaps/ETHK-B5-H.bcmap | Bin 0 -> 4426 bytes
.../static/pdfjs/web/cmaps/ETHK-B5-V.bcmap | Bin 0 -> 158 bytes
.../static/pdfjs/web/cmaps/ETen-B5-H.bcmap | Bin 0 -> 1125 bytes
.../static/pdfjs/web/cmaps/ETen-B5-V.bcmap | Bin 0 -> 158 bytes
.../static/pdfjs/web/cmaps/ETenms-B5-H.bcmap | 3 +
.../static/pdfjs/web/cmaps/ETenms-B5-V.bcmap | Bin 0 -> 172 bytes
.../webapp/static/pdfjs/web/cmaps/EUC-H.bcmap | Bin 0 -> 578 bytes
.../webapp/static/pdfjs/web/cmaps/EUC-V.bcmap | Bin 0 -> 170 bytes
.../webapp/static/pdfjs/web/cmaps/Ext-H.bcmap | Bin 0 -> 2536 bytes
.../static/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap | Bin 0 -> 2542 bytes
.../static/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap | Bin 0 -> 218 bytes
.../webapp/static/pdfjs/web/cmaps/Ext-V.bcmap | Bin 0 -> 215 bytes
.../static/pdfjs/web/cmaps/GB-EUC-H.bcmap | Bin 0 -> 549 bytes
.../static/pdfjs/web/cmaps/GB-EUC-V.bcmap | Bin 0 -> 179 bytes
.../webapp/static/pdfjs/web/cmaps/GB-H.bcmap | 4 +
.../webapp/static/pdfjs/web/cmaps/GB-V.bcmap | Bin 0 -> 175 bytes
.../static/pdfjs/web/cmaps/GBK-EUC-H.bcmap | Bin 0 -> 14692 bytes
.../static/pdfjs/web/cmaps/GBK-EUC-V.bcmap | Bin 0 -> 180 bytes
.../static/pdfjs/web/cmaps/GBK2K-H.bcmap | Bin 0 -> 19662 bytes
.../static/pdfjs/web/cmaps/GBK2K-V.bcmap | Bin 0 -> 219 bytes
.../static/pdfjs/web/cmaps/GBKp-EUC-H.bcmap | Bin 0 -> 14686 bytes
.../static/pdfjs/web/cmaps/GBKp-EUC-V.bcmap | Bin 0 -> 181 bytes
.../static/pdfjs/web/cmaps/GBT-EUC-H.bcmap | Bin 0 -> 7290 bytes
.../static/pdfjs/web/cmaps/GBT-EUC-V.bcmap | Bin 0 -> 180 bytes
.../webapp/static/pdfjs/web/cmaps/GBT-H.bcmap | Bin 0 -> 7269 bytes
.../webapp/static/pdfjs/web/cmaps/GBT-V.bcmap | Bin 0 -> 176 bytes
.../static/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap | Bin 0 -> 7298 bytes
.../static/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap | Bin 0 -> 182 bytes
.../static/pdfjs/web/cmaps/GBpc-EUC-H.bcmap | Bin 0 -> 557 bytes
.../static/pdfjs/web/cmaps/GBpc-EUC-V.bcmap | Bin 0 -> 181 bytes
.../webapp/static/pdfjs/web/cmaps/H.bcmap | Bin 0 -> 553 bytes
.../static/pdfjs/web/cmaps/HKdla-B5-H.bcmap | Bin 0 -> 2654 bytes
.../static/pdfjs/web/cmaps/HKdla-B5-V.bcmap | Bin 0 -> 148 bytes
.../static/pdfjs/web/cmaps/HKdlb-B5-H.bcmap | Bin 0 -> 2414 bytes
.../static/pdfjs/web/cmaps/HKdlb-B5-V.bcmap | Bin 0 -> 148 bytes
.../static/pdfjs/web/cmaps/HKgccs-B5-H.bcmap | Bin 0 -> 2292 bytes
.../static/pdfjs/web/cmaps/HKgccs-B5-V.bcmap | Bin 0 -> 149 bytes
.../static/pdfjs/web/cmaps/HKm314-B5-H.bcmap | Bin 0 -> 1772 bytes
.../static/pdfjs/web/cmaps/HKm314-B5-V.bcmap | Bin 0 -> 149 bytes
.../static/pdfjs/web/cmaps/HKm471-B5-H.bcmap | Bin 0 -> 2171 bytes
.../static/pdfjs/web/cmaps/HKm471-B5-V.bcmap | Bin 0 -> 149 bytes
.../static/pdfjs/web/cmaps/HKscs-B5-H.bcmap | Bin 0 -> 4437 bytes
.../static/pdfjs/web/cmaps/HKscs-B5-V.bcmap | Bin 0 -> 159 bytes
.../static/pdfjs/web/cmaps/Hankaku.bcmap | Bin 0 -> 132 bytes
.../static/pdfjs/web/cmaps/Hiragana.bcmap | Bin 0 -> 124 bytes
.../static/pdfjs/web/cmaps/KSC-EUC-H.bcmap | Bin 0 -> 1848 bytes
.../static/pdfjs/web/cmaps/KSC-EUC-V.bcmap | Bin 0 -> 164 bytes
.../webapp/static/pdfjs/web/cmaps/KSC-H.bcmap | Bin 0 -> 1831 bytes
.../static/pdfjs/web/cmaps/KSC-Johab-H.bcmap | Bin 0 -> 16791 bytes
.../static/pdfjs/web/cmaps/KSC-Johab-V.bcmap | Bin 0 -> 166 bytes
.../webapp/static/pdfjs/web/cmaps/KSC-V.bcmap | Bin 0 -> 160 bytes
.../static/pdfjs/web/cmaps/KSCms-UHC-H.bcmap | Bin 0 -> 2787 bytes
.../pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap | Bin 0 -> 2789 bytes
.../pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap | Bin 0 -> 169 bytes
.../static/pdfjs/web/cmaps/KSCms-UHC-V.bcmap | Bin 0 -> 166 bytes
.../static/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap | Bin 0 -> 2024 bytes
.../static/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap | Bin 0 -> 166 bytes
.../static/pdfjs/web/cmaps/Katakana.bcmap | Bin 0 -> 100 bytes
.../webapp/static/pdfjs/web/cmaps/LICENSE | 36 +
.../webapp/static/pdfjs/web/cmaps/NWP-H.bcmap | Bin 0 -> 2765 bytes
.../webapp/static/pdfjs/web/cmaps/NWP-V.bcmap | Bin 0 -> 252 bytes
.../static/pdfjs/web/cmaps/RKSJ-H.bcmap | Bin 0 -> 534 bytes
.../static/pdfjs/web/cmaps/RKSJ-V.bcmap | Bin 0 -> 170 bytes
.../webapp/static/pdfjs/web/cmaps/Roman.bcmap | Bin 0 -> 96 bytes
.../pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap | Bin 0 -> 48280 bytes
.../pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap | Bin 0 -> 156 bytes
.../pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap | Bin 0 -> 50419 bytes
.../pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap | Bin 0 -> 156 bytes
.../pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap | Bin 0 -> 52679 bytes
.../pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap | Bin 0 -> 160 bytes
.../pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap | Bin 0 -> 53629 bytes
.../pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap | Bin 0 -> 157 bytes
.../static/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap | Bin 0 -> 43366 bytes
.../static/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap | Bin 0 -> 193 bytes
.../pdfjs/web/cmaps/UniGB-UTF16-H.bcmap | Bin 0 -> 44086 bytes
.../pdfjs/web/cmaps/UniGB-UTF16-V.bcmap | Bin 0 -> 178 bytes
.../pdfjs/web/cmaps/UniGB-UTF32-H.bcmap | Bin 0 -> 45738 bytes
.../pdfjs/web/cmaps/UniGB-UTF32-V.bcmap | Bin 0 -> 182 bytes
.../static/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap | Bin 0 -> 46837 bytes
.../static/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap | Bin 0 -> 181 bytes
.../pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap | Bin 0 -> 25439 bytes
.../pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap | Bin 0 -> 119 bytes
.../pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap | Bin 0 -> 680 bytes
.../pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap | Bin 0 -> 664 bytes
.../pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap | Bin 0 -> 39443 bytes
.../pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap | Bin 0 -> 643 bytes
.../pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap | Bin 0 -> 40539 bytes
.../pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap | Bin 0 -> 677 bytes
.../pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap | Bin 0 -> 41695 bytes
.../pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap | Bin 0 -> 678 bytes
.../pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap | Bin 0 -> 39534 bytes
.../pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap | Bin 0 -> 647 bytes
.../pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap | Bin 0 -> 40630 bytes
.../pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap | Bin 0 -> 681 bytes
.../pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap | Bin 0 -> 41779 bytes
.../pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap | Bin 0 -> 682 bytes
.../pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap | Bin 0 -> 705 bytes
.../pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap | Bin 0 -> 689 bytes
.../pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap | Bin 0 -> 726 bytes
.../pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap | Bin 0 -> 40517 bytes
.../pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap | Bin 0 -> 684 bytes
.../web/cmaps/UniJISX02132004-UTF32-H.bcmap | Bin 0 -> 40608 bytes
.../web/cmaps/UniJISX02132004-UTF32-V.bcmap | Bin 0 -> 688 bytes
.../static/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap | Bin 0 -> 25783 bytes
.../static/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap | Bin 0 -> 178 bytes
.../pdfjs/web/cmaps/UniKS-UTF16-H.bcmap | Bin 0 -> 26327 bytes
.../pdfjs/web/cmaps/UniKS-UTF16-V.bcmap | Bin 0 -> 164 bytes
.../pdfjs/web/cmaps/UniKS-UTF32-H.bcmap | Bin 0 -> 26451 bytes
.../pdfjs/web/cmaps/UniKS-UTF32-V.bcmap | Bin 0 -> 168 bytes
.../static/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap | Bin 0 -> 27790 bytes
.../static/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap | Bin 0 -> 169 bytes
.../webapp/static/pdfjs/web/cmaps/V.bcmap | Bin 0 -> 166 bytes
.../static/pdfjs/web/cmaps/WP-Symbol.bcmap | Bin 0 -> 179 bytes
.../webapp/static/pdfjs/web/compatibility.js | 577 +
.../web/compressed.tracemonkey-pldi-09.pdf | Bin 0 -> 1016315 bytes
src/main/webapp/static/pdfjs/web/debugger.js | 620 +
.../pdfjs/web/images/annotation-check.svg | 11 +
.../pdfjs/web/images/annotation-comment.svg | 16 +
.../pdfjs/web/images/annotation-help.svg | 26 +
.../pdfjs/web/images/annotation-insert.svg | 10 +
.../pdfjs/web/images/annotation-key.svg | 11 +
.../web/images/annotation-newparagraph.svg | 11 +
.../pdfjs/web/images/annotation-noicon.svg | 7 +
.../pdfjs/web/images/annotation-note.svg | 42 +
.../pdfjs/web/images/annotation-paragraph.svg | 16 +
.../web/images/findbarButton-next-rtl.png | Bin 0 -> 199 bytes
.../web/images/findbarButton-next-rtl@2x.png | Bin 0 -> 304 bytes
.../pdfjs/web/images/findbarButton-next.png | Bin 0 -> 193 bytes
.../web/images/findbarButton-next@2x.png | Bin 0 -> 296 bytes
.../web/images/findbarButton-previous-rtl.png | Bin 0 -> 193 bytes
.../images/findbarButton-previous-rtl@2x.png | Bin 0 -> 296 bytes
.../web/images/findbarButton-previous.png | Bin 0 -> 199 bytes
.../web/images/findbarButton-previous@2x.png | Bin 0 -> 304 bytes
.../webapp/static/pdfjs/web/images/grab.cur | Bin 0 -> 326 bytes
.../static/pdfjs/web/images/grabbing.cur | Bin 0 -> 326 bytes
.../static/pdfjs/web/images/loading-icon.gif | Bin 0 -> 2545 bytes
.../static/pdfjs/web/images/loading-small.png | Bin 0 -> 7402 bytes
.../pdfjs/web/images/loading-small@2x.png | Bin 0 -> 16131 bytes
...ondaryToolbarButton-documentProperties.png | Bin 0 -> 403 bytes
...aryToolbarButton-documentProperties@2x.png | Bin 0 -> 933 bytes
.../secondaryToolbarButton-firstPage.png | Bin 0 -> 179 bytes
.../secondaryToolbarButton-firstPage@2x.png | Bin 0 -> 266 bytes
.../secondaryToolbarButton-handTool.png | Bin 0 -> 301 bytes
.../secondaryToolbarButton-handTool@2x.png | Bin 0 -> 583 bytes
.../secondaryToolbarButton-lastPage.png | Bin 0 -> 175 bytes
.../secondaryToolbarButton-lastPage@2x.png | Bin 0 -> 276 bytes
.../secondaryToolbarButton-rotateCcw.png | Bin 0 -> 360 bytes
.../secondaryToolbarButton-rotateCcw@2x.png | Bin 0 -> 731 bytes
.../secondaryToolbarButton-rotateCw.png | Bin 0 -> 359 bytes
.../secondaryToolbarButton-rotateCw@2x.png | Bin 0 -> 714 bytes
.../webapp/static/pdfjs/web/images/shadow.png | Bin 0 -> 290 bytes
.../static/pdfjs/web/images/texture.png | Bin 0 -> 2418 bytes
.../web/images/toolbarButton-bookmark.png | Bin 0 -> 174 bytes
.../web/images/toolbarButton-bookmark@2x.png | Bin 0 -> 260 bytes
.../web/images/toolbarButton-download.png | Bin 0 -> 259 bytes
.../web/images/toolbarButton-download@2x.png | Bin 0 -> 425 bytes
.../web/images/toolbarButton-menuArrows.png | Bin 0 -> 108 bytes
.../images/toolbarButton-menuArrows@2x.png | Bin 0 -> 152 bytes
.../web/images/toolbarButton-openFile.png | Bin 0 -> 295 bytes
.../web/images/toolbarButton-openFile@2x.png | Bin 0 -> 550 bytes
.../web/images/toolbarButton-pageDown-rtl.png | Bin 0 -> 242 bytes
.../images/toolbarButton-pageDown-rtl@2x.png | Bin 0 -> 398 bytes
.../web/images/toolbarButton-pageDown.png | Bin 0 -> 238 bytes
.../web/images/toolbarButton-pageDown@2x.png | Bin 0 -> 396 bytes
.../web/images/toolbarButton-pageUp-rtl.png | Bin 0 -> 245 bytes
.../images/toolbarButton-pageUp-rtl@2x.png | Bin 0 -> 405 bytes
.../pdfjs/web/images/toolbarButton-pageUp.png | Bin 0 -> 246 bytes
.../web/images/toolbarButton-pageUp@2x.png | Bin 0 -> 403 bytes
.../images/toolbarButton-presentationMode.png | Bin 0 -> 321 bytes
.../toolbarButton-presentationMode@2x.png | Bin 0 -> 586 bytes
.../pdfjs/web/images/toolbarButton-print.png | Bin 0 -> 257 bytes
.../web/images/toolbarButton-print@2x.png | Bin 0 -> 464 bytes
.../pdfjs/web/images/toolbarButton-search.png | Bin 0 -> 309 bytes
.../web/images/toolbarButton-search@2x.png | Bin 0 -> 653 bytes
...olbarButton-secondaryToolbarToggle-rtl.png | Bin 0 -> 246 bytes
...arButton-secondaryToolbarToggle-rtl@2x.png | Bin 0 -> 456 bytes
.../toolbarButton-secondaryToolbarToggle.png | Bin 0 -> 243 bytes
...oolbarButton-secondaryToolbarToggle@2x.png | Bin 0 -> 458 bytes
.../toolbarButton-sidebarToggle-rtl.png | Bin 0 -> 225 bytes
.../toolbarButton-sidebarToggle-rtl@2x.png | Bin 0 -> 344 bytes
.../images/toolbarButton-sidebarToggle.png | Bin 0 -> 225 bytes
.../images/toolbarButton-sidebarToggle@2x.png | Bin 0 -> 331 bytes
.../images/toolbarButton-viewAttachments.png | Bin 0 -> 384 bytes
.../toolbarButton-viewAttachments@2x.png | Bin 0 -> 871 bytes
.../images/toolbarButton-viewOutline-rtl.png | Bin 0 -> 177 bytes
.../toolbarButton-viewOutline-rtl@2x.png | Bin 0 -> 394 bytes
.../web/images/toolbarButton-viewOutline.png | Bin 0 -> 178 bytes
.../images/toolbarButton-viewOutline@2x.png | Bin 0 -> 331 bytes
.../images/toolbarButton-viewThumbnail.png | Bin 0 -> 185 bytes
.../images/toolbarButton-viewThumbnail@2x.png | Bin 0 -> 220 bytes
.../pdfjs/web/images/toolbarButton-zoomIn.png | Bin 0 -> 136 bytes
.../web/images/toolbarButton-zoomIn@2x.png | Bin 0 -> 160 bytes
.../web/images/toolbarButton-zoomOut.png | Bin 0 -> 88 bytes
.../web/images/toolbarButton-zoomOut@2x.png | Bin 0 -> 109 bytes
.../webapp/static/pdfjs/web/jquery-3.3.1.js | 10364 ++++
src/main/webapp/static/pdfjs/web/l10n.js | 1033 +
.../pdfjs/web/locale/ach/viewer.properties | 167 +
.../pdfjs/web/locale/af/viewer.properties | 167 +
.../pdfjs/web/locale/ak/viewer.properties | 123 +
.../pdfjs/web/locale/an/viewer.properties | 167 +
.../pdfjs/web/locale/ar/viewer.properties | 167 +
.../pdfjs/web/locale/as/viewer.properties | 164 +
.../pdfjs/web/locale/ast/viewer.properties | 111 +
.../pdfjs/web/locale/az/viewer.properties | 167 +
.../pdfjs/web/locale/be/viewer.properties | 105 +
.../pdfjs/web/locale/bg/viewer.properties | 167 +
.../pdfjs/web/locale/bn-BD/viewer.properties | 139 +
.../pdfjs/web/locale/bn-IN/viewer.properties | 167 +
.../pdfjs/web/locale/br/viewer.properties | 167 +
.../pdfjs/web/locale/bs/viewer.properties | 125 +
.../pdfjs/web/locale/ca/viewer.properties | 167 +
.../pdfjs/web/locale/cs/viewer.properties | 167 +
.../pdfjs/web/locale/csb/viewer.properties | 134 +
.../pdfjs/web/locale/cy/viewer.properties | 167 +
.../pdfjs/web/locale/da/viewer.properties | 167 +
.../pdfjs/web/locale/de/viewer.properties | 167 +
.../pdfjs/web/locale/el/viewer.properties | 131 +
.../pdfjs/web/locale/en-GB/viewer.properties | 167 +
.../pdfjs/web/locale/en-US/viewer.properties | 167 +
.../pdfjs/web/locale/en-ZA/viewer.properties | 163 +
.../pdfjs/web/locale/eo/viewer.properties | 167 +
.../pdfjs/web/locale/es-AR/viewer.properties | 167 +
.../pdfjs/web/locale/es-CL/viewer.properties | 130 +
.../pdfjs/web/locale/es-ES/viewer.properties | 111 +
.../pdfjs/web/locale/es-MX/viewer.properties | 167 +
.../pdfjs/web/locale/et/viewer.properties | 167 +
.../pdfjs/web/locale/eu/viewer.properties | 167 +
.../pdfjs/web/locale/fa/viewer.properties | 167 +
.../pdfjs/web/locale/ff/viewer.properties | 167 +
.../pdfjs/web/locale/fi/viewer.properties | 167 +
.../pdfjs/web/locale/fr/viewer.properties | 167 +
.../pdfjs/web/locale/fy-NL/viewer.properties | 173 +
.../pdfjs/web/locale/ga-IE/viewer.properties | 167 +
.../pdfjs/web/locale/gd/viewer.properties | 167 +
.../pdfjs/web/locale/gl/viewer.properties | 164 +
.../pdfjs/web/locale/gu-IN/viewer.properties | 149 +
.../pdfjs/web/locale/he/viewer.properties | 152 +
.../pdfjs/web/locale/hi-IN/viewer.properties | 166 +
.../pdfjs/web/locale/hr/viewer.properties | 167 +
.../pdfjs/web/locale/hu/viewer.properties | 167 +
.../pdfjs/web/locale/hy-AM/viewer.properties | 167 +
.../pdfjs/web/locale/id/viewer.properties | 167 +
.../pdfjs/web/locale/is/viewer.properties | 167 +
.../pdfjs/web/locale/it/viewer.properties | 111 +
.../pdfjs/web/locale/ja/viewer.properties | 167 +
.../pdfjs/web/locale/ka/viewer.properties | 124 +
.../pdfjs/web/locale/kk/viewer.properties | 167 +
.../pdfjs/web/locale/km/viewer.properties | 167 +
.../pdfjs/web/locale/kn/viewer.properties | 167 +
.../pdfjs/web/locale/ko/viewer.properties | 167 +
.../pdfjs/web/locale/ku/viewer.properties | 139 +
.../pdfjs/web/locale/lg/viewer.properties | 103 +
.../pdfjs/web/locale/lij/viewer.properties | 116 +
.../static/pdfjs/web/locale/locale.properties | 312 +
.../pdfjs/web/locale/lt/viewer.properties | 167 +
.../pdfjs/web/locale/lv/viewer.properties | 167 +
.../pdfjs/web/locale/mai/viewer.properties | 167 +
.../pdfjs/web/locale/mk/viewer.properties | 126 +
.../pdfjs/web/locale/ml/viewer.properties | 167 +
.../pdfjs/web/locale/mn/viewer.properties | 65 +
.../pdfjs/web/locale/mr/viewer.properties | 165 +
.../pdfjs/web/locale/ms/viewer.properties | 165 +
.../pdfjs/web/locale/my/viewer.properties | 166 +
.../pdfjs/web/locale/nb-NO/viewer.properties | 167 +
.../pdfjs/web/locale/nl/viewer.properties | 167 +
.../pdfjs/web/locale/nn-NO/viewer.properties | 167 +
.../pdfjs/web/locale/nso/viewer.properties | 123 +
.../pdfjs/web/locale/oc/viewer.properties | 165 +
.../pdfjs/web/locale/or/viewer.properties | 164 +
.../pdfjs/web/locale/pa-IN/viewer.properties | 181 +
.../pdfjs/web/locale/pl/viewer.properties | 152 +
.../pdfjs/web/locale/pt-BR/viewer.properties | 167 +
.../pdfjs/web/locale/pt-PT/viewer.properties | 167 +
.../pdfjs/web/locale/rm/viewer.properties | 157 +
.../pdfjs/web/locale/ro/viewer.properties | 167 +
.../pdfjs/web/locale/ru/viewer.properties | 111 +
.../pdfjs/web/locale/rw/viewer.properties | 73 +
.../pdfjs/web/locale/sah/viewer.properties | 163 +
.../pdfjs/web/locale/si/viewer.properties | 167 +
.../pdfjs/web/locale/sk/viewer.properties | 167 +
.../pdfjs/web/locale/sl/viewer.properties | 167 +
.../pdfjs/web/locale/son/viewer.properties | 167 +
.../pdfjs/web/locale/sq/viewer.properties | 165 +
.../pdfjs/web/locale/sr/viewer.properties | 167 +
.../pdfjs/web/locale/sv-SE/viewer.properties | 167 +
.../pdfjs/web/locale/sw/viewer.properties | 123 +
.../pdfjs/web/locale/ta-LK/viewer.properties | 64 +
.../pdfjs/web/locale/ta/viewer.properties | 167 +
.../pdfjs/web/locale/te/viewer.properties | 167 +
.../pdfjs/web/locale/th/viewer.properties | 167 +
.../pdfjs/web/locale/tl/viewer.properties | 83 +
.../pdfjs/web/locale/tn/viewer.properties | 74 +
.../pdfjs/web/locale/tr/viewer.properties | 167 +
.../pdfjs/web/locale/uk/viewer.properties | 167 +
.../pdfjs/web/locale/ur/viewer.properties | 161 +
.../pdfjs/web/locale/vi/viewer.properties | 145 +
.../pdfjs/web/locale/wo/viewer.properties | 118 +
.../pdfjs/web/locale/xh/viewer.properties | 167 +
.../pdfjs/web/locale/zh-CN/viewer.properties | 167 +
.../pdfjs/web/locale/zh-TW/viewer.properties | 168 +
.../pdfjs/web/locale/zu/viewer.properties | 124 +
src/main/webapp/static/pdfjs/web/viewer.css | 1999 +
src/main/webapp/static/pdfjs/web/viewer.html | 481 +
src/main/webapp/static/pdfjs/web/viewer.js | 7608 +++
.../static/zTree_v3-master/.gitattributes | 22 +
.../webapp/static/zTree_v3-master/.gitignore | 163 +
.../webapp/static/zTree_v3-master/README.md | 52 +
.../css/awesomeStyle/awesome.css | 386 +
.../css/awesomeStyle/awesome.less | 146 +
.../zTree_v3-master/css/awesomeStyle/fa.less | 480 +
.../css/awesomeStyle/img/loading.gif | Bin 0 -> 381 bytes
.../static/zTree_v3-master/css/demo.css | 33 +
.../css/metroStyle/img/line_conn.png | Bin 0 -> 933 bytes
.../css/metroStyle/img/loading.gif | Bin 0 -> 381 bytes
.../css/metroStyle/img/metro.gif | Bin 0 -> 4679 bytes
.../css/metroStyle/img/metro.png | Bin 0 -> 5283 bytes
.../css/metroStyle/metroStyle.css | 96 +
.../css/zTreeStyle/img/diy/1_close.png | Bin 0 -> 601 bytes
.../css/zTreeStyle/img/diy/1_open.png | Bin 0 -> 580 bytes
.../css/zTreeStyle/img/diy/2.png | Bin 0 -> 570 bytes
.../css/zTreeStyle/img/diy/3.png | Bin 0 -> 762 bytes
.../css/zTreeStyle/img/diy/4.png | Bin 0 -> 399 bytes
.../css/zTreeStyle/img/diy/5.png | Bin 0 -> 710 bytes
.../css/zTreeStyle/img/diy/6.png | Bin 0 -> 432 bytes
.../css/zTreeStyle/img/diy/7.png | Bin 0 -> 534 bytes
.../css/zTreeStyle/img/diy/8.png | Bin 0 -> 529 bytes
.../css/zTreeStyle/img/diy/9.png | Bin 0 -> 467 bytes
.../css/zTreeStyle/img/line_conn.gif | Bin 0 -> 45 bytes
.../css/zTreeStyle/img/loading.gif | Bin 0 -> 381 bytes
.../css/zTreeStyle/img/zTreeStandard.gif | Bin 0 -> 5564 bytes
.../css/zTreeStyle/img/zTreeStandard.png | Bin 0 -> 11173 bytes
.../css/zTreeStyle/zTreeStyle.css | 97 +
.../css/zTreeStyle/zTreeStylev3.5.28.css | 97 +
.../static/zTree_v3-master/js/fuzzysearch.js | 117 +
.../zTree_v3-master/js/jquery-1.4.4.min.js | 167 +
.../zTree_v3-master/js/jquery.ztree.all.js | 3841 ++
.../js/jquery.ztree.all.min.js | 166 +
.../js/jquery.ztree.allv3-3.5.28.js | 3734 ++
.../js/jquery.ztree.allv3-3.5.28.min.js | 165 +
.../zTree_v3-master/js/jquery.ztree.core.js | 1986 +
.../js/jquery.ztree.core.min.js | 75 +
.../js/jquery.ztree.excheck.js | 651 +
.../js/jquery.ztree.excheck.min.js | 34 +
.../zTree_v3-master/js/jquery.ztree.exedit.js | 1203 +
.../js/jquery.ztree.exedit.min.js | 53 +
.../zTree_v3-master/js/jquery.ztree.exhide.js | 404 +
.../js/jquery.ztree.exhide.min.js | 23 +
.../js/jquery.ztree.exhidev3-3.5.28.js | 367 +
.../static/zTree_v3-master/log v3.x.txt | 319 +
.../static/zTree_v3-master/package.json | 21 +
.../zTree_v3-master/zTree.v3.jquery.json | 35 +
.../webapp/病案归档系统版本说明.txt | 20 +
src/test/java/com/emr/MapperTest.java | 132 +
4092 files changed, 551758 insertions(+)
create mode 100644 .gitignore
create mode 100644 pom.xml
create mode 100644 src/main/java/com/emr/annotation/DataSource.java
create mode 100644 src/main/java/com/emr/annotation/DataSourceAspect.java
create mode 100644 src/main/java/com/emr/annotation/DynamicDataSource.java
create mode 100644 src/main/java/com/emr/controller/ArchiveFlowInfoController.java
create mode 100644 src/main/java/com/emr/controller/ContantController.java
create mode 100644 src/main/java/com/emr/controller/DictionaryController.java
create mode 100644 src/main/java/com/emr/controller/FontController.java
create mode 100644 src/main/java/com/emr/controller/FormTokenFlagUtil.java
create mode 100644 src/main/java/com/emr/controller/GlobalExceptionHandler.java
create mode 100644 src/main/java/com/emr/controller/HolidaySetController.java
create mode 100644 src/main/java/com/emr/controller/JAXDynamicClientFactory.java
create mode 100644 src/main/java/com/emr/controller/LoginController.java
create mode 100644 src/main/java/com/emr/controller/MedicalRecallController.java
create mode 100644 src/main/java/com/emr/controller/StatisticsController.java
create mode 100644 src/main/java/com/emr/controller/UploadFilesController.java
create mode 100644 src/main/java/com/emr/controller/UrlInterceptor.java
create mode 100644 src/main/java/com/emr/controller/VCountController.java
create mode 100644 src/main/java/com/emr/controller/beHospitaledController.java
create mode 100644 src/main/java/com/emr/controller/faultController.java
create mode 100644 src/main/java/com/emr/controller/faultTypeController.java
create mode 100644 src/main/java/com/emr/controller/inHospitalController.java
create mode 100644 src/main/java/com/emr/controller/lastVerifyController.java
create mode 100644 src/main/java/com/emr/controller/medicalRecallDateController.java
create mode 100644 src/main/java/com/emr/controller/unfileMedicalController.java
create mode 100644 src/main/java/com/emr/dao/ArchiveCallbackInfoMapper.java
create mode 100644 src/main/java/com/emr/dao/ArchiveFlowInfoMapper.java
create mode 100644 src/main/java/com/emr/dao/ArchiveFlowRoleMapper.java
create mode 100644 src/main/java/com/emr/dao/Archive_DetailMapper.java
create mode 100644 src/main/java/com/emr/dao/Archive_MasterMapper.java
create mode 100644 src/main/java/com/emr/dao/EmrHolidaySetMapper.java
create mode 100644 src/main/java/com/emr/dao/EmrOvertimeSetMapper.java
create mode 100644 src/main/java/com/emr/dao/EmrPatientMapper.java
create mode 100644 src/main/java/com/emr/dao/Emr_Archive_DetailMapper.java
create mode 100644 src/main/java/com/emr/dao/Emr_DictionaryMapper.java
create mode 100644 src/main/java/com/emr/dao/Emr_Fault_DetailMapper.java
create mode 100644 src/main/java/com/emr/dao/Emr_Fault_TypeMapper.java
create mode 100644 src/main/java/com/emr/dao/Emr_LogMapper.java
create mode 100644 src/main/java/com/emr/dao/Emr_PictureMapper.java
create mode 100644 src/main/java/com/emr/dao/StatisticsMapper.java
create mode 100644 src/main/java/com/emr/dao/TPrintinfoMapper.java
create mode 100644 src/main/java/com/emr/dao/TUuInfoMapper.java
create mode 100644 src/main/java/com/emr/dao/TUuPrintMapper.java
create mode 100644 src/main/java/com/emr/dao/V_CountMapper.java
create mode 100644 src/main/java/com/emr/dao/Zd_AssortMapper.java
create mode 100644 src/main/java/com/emr/entity/ArchiveCallbackInfo.java
create mode 100644 src/main/java/com/emr/entity/ArchiveFlowInfo.java
create mode 100644 src/main/java/com/emr/entity/ArchiveFlowRole.java
create mode 100644 src/main/java/com/emr/entity/Archive_Detail.java
create mode 100644 src/main/java/com/emr/entity/Archive_Detail_Vo.java
create mode 100644 src/main/java/com/emr/entity/Archive_Master.java
create mode 100644 src/main/java/com/emr/entity/Archive_Master_Vo.java
create mode 100644 src/main/java/com/emr/entity/AssortTypeTree.java
create mode 100644 src/main/java/com/emr/entity/EmrHolidaySet.java
create mode 100644 src/main/java/com/emr/entity/EmrHolidaySetVo.java
create mode 100644 src/main/java/com/emr/entity/EmrOvertimeSet.java
create mode 100644 src/main/java/com/emr/entity/EmrPatient.java
create mode 100644 src/main/java/com/emr/entity/Emr_Archive_Detail.java
create mode 100644 src/main/java/com/emr/entity/Emr_Dictionary.java
create mode 100644 src/main/java/com/emr/entity/Emr_Fault_Detail.java
create mode 100644 src/main/java/com/emr/entity/Emr_Fault_Detail_Vo.java
create mode 100644 src/main/java/com/emr/entity/Emr_Fault_Type.java
create mode 100644 src/main/java/com/emr/entity/Emr_Fault_Vo.java
create mode 100644 src/main/java/com/emr/entity/Emr_Log.java
create mode 100644 src/main/java/com/emr/entity/Emr_Log_Vo.java
create mode 100644 src/main/java/com/emr/entity/Emr_Picture.java
create mode 100644 src/main/java/com/emr/entity/File_Vo.java
create mode 100644 src/main/java/com/emr/entity/OffsetLimitPage.java
create mode 100644 src/main/java/com/emr/entity/Power_User.java
create mode 100644 src/main/java/com/emr/entity/ReturnAsmx.java
create mode 100644 src/main/java/com/emr/entity/TPrintinfo.java
create mode 100644 src/main/java/com/emr/entity/TUuInfo.java
create mode 100644 src/main/java/com/emr/entity/TUuPrint.java
create mode 100644 src/main/java/com/emr/entity/Upload_File_Vo.java
create mode 100644 src/main/java/com/emr/entity/V_Count.java
create mode 100644 src/main/java/com/emr/entity/Zd_Assort.java
create mode 100644 src/main/java/com/emr/service/Archive_DetailService.java
create mode 100644 src/main/java/com/emr/service/Archive_MasterService.java
create mode 100644 src/main/java/com/emr/service/Emr_Archive_DetailService.java
create mode 100644 src/main/java/com/emr/service/Emr_DictionaryService.java
create mode 100644 src/main/java/com/emr/service/Emr_Fault_DetailService.java
create mode 100644 src/main/java/com/emr/service/Emr_Fault_TypeService.java
create mode 100644 src/main/java/com/emr/service/Emr_PictureService.java
create mode 100644 src/main/java/com/emr/service/V_CountService.java
create mode 100644 src/main/java/com/emr/service/WebService.java
create mode 100644 src/main/java/com/emr/service/ipml/ArchiveCallbackInfoService.java
create mode 100644 src/main/java/com/emr/service/ipml/ArchiveFlowInfoService.java
create mode 100644 src/main/java/com/emr/service/ipml/Archive_DetailServiceImpl.java
create mode 100644 src/main/java/com/emr/service/ipml/Archive_MasterServiceImpl.java
create mode 100644 src/main/java/com/emr/service/ipml/Emr_Archive_DetailServiceImpl.java
create mode 100644 src/main/java/com/emr/service/ipml/Emr_DictionaryServiceImpl.java
create mode 100644 src/main/java/com/emr/service/ipml/Emr_Fault_DetailServiceImpl.java
create mode 100644 src/main/java/com/emr/service/ipml/Emr_Fault_TypeServiceImpl.java
create mode 100644 src/main/java/com/emr/service/ipml/Emr_PictureServiceImpl.java
create mode 100644 src/main/java/com/emr/service/ipml/EnumVerify.java
create mode 100644 src/main/java/com/emr/service/ipml/HolidaySetService.java
create mode 100644 src/main/java/com/emr/service/ipml/StatisticsService.java
create mode 100644 src/main/java/com/emr/service/ipml/TPrintinfoService.java
create mode 100644 src/main/java/com/emr/service/ipml/V_CountServiceImpl.java
create mode 100644 src/main/java/com/emr/service/ipml/ZdAssortService.java
create mode 100644 src/main/java/com/emr/shiro/MyRealm.java
create mode 100644 src/main/java/com/emr/util/AccountDate.java
create mode 100644 src/main/java/com/emr/util/ActionScopeUtils.java
create mode 100644 src/main/java/com/emr/util/ExportExcelUtil.java
create mode 100644 src/main/java/com/emr/util/ExportExcelUtil1.java
create mode 100644 src/main/java/com/emr/util/HttpClientUtils.java
create mode 100644 src/main/java/com/emr/util/Jpg2PdfUtil.java
create mode 100644 src/main/java/com/emr/util/Msg.java
create mode 100644 src/main/java/com/emr/util/OracleConnect.java
create mode 100644 src/main/java/com/emr/util/PDFUtils.java
create mode 100644 src/main/java/com/emr/util/PageBean.java
create mode 100644 src/main/java/com/emr/util/PrintToPdfUtil.java
create mode 100644 src/main/java/com/emr/util/ReadFile.java
create mode 100644 src/main/java/com/emr/util/UrlUtil.java
create mode 100644 src/main/java/com/emr/util/test.java
create mode 100644 src/main/java/com/emr/vo/ArchiveCallbackInfoVo.java
create mode 100644 src/main/java/com/emr/vo/ArchiveFlowInfoVo.java
create mode 100644 src/main/java/com/emr/vo/DeptStatistics.java
create mode 100644 src/main/java/com/emr/vo/DoctorStatistics.java
create mode 100644 src/main/java/com/emr/vo/FinalAndFirstStatistics.java
create mode 100644 src/main/java/com/emr/vo/TUuInfoVo.java
create mode 100644 src/main/java/com/emr/vo/TUuPrintSearch.java
create mode 100644 src/main/java/com/emr/vo/TUuPrintVo.java
create mode 100644 src/main/java/com/emr/vo/User.java
create mode 100644 src/main/java/com/emr/vo/V_CountVo.java
create mode 100644 src/main/resources/activiti/leave.bpmn20.xml
create mode 100644 src/main/resources/config/activiti.cfg.xml
create mode 100644 src/main/resources/config/applicationContext-shiro.xml
create mode 100644 src/main/resources/config/applicationContext.xml
create mode 100644 src/main/resources/config/config.properties
create mode 100644 src/main/resources/config/gennerator.properties
create mode 100644 src/main/resources/config/jdbc.properties
create mode 100644 src/main/resources/config/mybatis-config.xml
create mode 100644 src/main/resources/config/spring-shiro.xml
create mode 100644 src/main/resources/config/webService.xml
create mode 100644 src/main/resources/generatorConfig.xml
create mode 100644 src/main/resources/log4j.properties
create mode 100644 src/main/resources/mapper/ArchiveCallbackInfoMapper.xml
create mode 100644 src/main/resources/mapper/ArchiveFlowInfoMapper.xml
create mode 100644 src/main/resources/mapper/ArchiveFlowRoleMapper.xml
create mode 100644 src/main/resources/mapper/Archive_DetailMapper.xml
create mode 100644 src/main/resources/mapper/Archive_MasterMapper.xml
create mode 100644 src/main/resources/mapper/EmrHolidaySetMapper.xml
create mode 100644 src/main/resources/mapper/EmrOvertimeSetMapper.xml
create mode 100644 src/main/resources/mapper/EmrPatientMapper.xml
create mode 100644 src/main/resources/mapper/Emr_Archive_DetailMapper.xml
create mode 100644 src/main/resources/mapper/Emr_DictionaryMapper.xml
create mode 100644 src/main/resources/mapper/Emr_Fault_DetailMapper.xml
create mode 100644 src/main/resources/mapper/Emr_Fault_TypeMapper.xml
create mode 100644 src/main/resources/mapper/Emr_LogMapper.xml
create mode 100644 src/main/resources/mapper/Emr_PictureMapper.xml
create mode 100644 src/main/resources/mapper/StatisticsMapper.xml
create mode 100644 src/main/resources/mapper/TPrintinfoMapper.xml
create mode 100644 src/main/resources/mapper/TUuInfoMapper.xml
create mode 100644 src/main/resources/mapper/TUuPrintMapper.xml
create mode 100644 src/main/resources/mapper/V_CountMapper.xml
create mode 100644 src/main/resources/mapper/Zd_AssortMapper.xml
create mode 100644 src/main/webapp/WEB-INF/dispatcherServlet-servlet.xml
create mode 100644 src/main/webapp/WEB-INF/jspf/boostrapSelect.jspf
create mode 100644 src/main/webapp/WEB-INF/jspf/comm.jspf
create mode 100644 src/main/webapp/WEB-INF/jspf/confirmJsp.jspf
create mode 100644 src/main/webapp/WEB-INF/jspf/ztreeCommom.jsp
create mode 100644 src/main/webapp/WEB-INF/lib/ojdbc14.jar
create mode 100644 src/main/webapp/WEB-INF/lib/power-foundaton-1.0-SNAPSHOT.jar
create mode 100644 src/main/webapp/WEB-INF/lib/sqljdbc4-2.0.jar
create mode 100644 src/main/webapp/WEB-INF/views/beHospitaledDir/beHospList.jsp
create mode 100644 src/main/webapp/WEB-INF/views/beHospitaledDir/timeLine.jsp
create mode 100644 src/main/webapp/WEB-INF/views/dictionaryDir/dictionary.jsp
create mode 100644 src/main/webapp/WEB-INF/views/faultDir/faultList.jsp
create mode 100644 src/main/webapp/WEB-INF/views/faultTypeDir/faultTypeList.jsp
create mode 100644 src/main/webapp/WEB-INF/views/flowInfo/flowInfoList.jsp
create mode 100644 src/main/webapp/WEB-INF/views/font/error.jsp
create mode 100644 src/main/webapp/WEB-INF/views/font/showRecord.jsp
create mode 100644 src/main/webapp/WEB-INF/views/font/showRecordIframe.jsp
create mode 100644 src/main/webapp/WEB-INF/views/holidaySetDir/holidaySetList.jsp
create mode 100644 src/main/webapp/WEB-INF/views/inHospitalDir/inHositalList.jsp
create mode 100644 src/main/webapp/WEB-INF/views/index.html
create mode 100644 src/main/webapp/WEB-INF/views/index.jsp
create mode 100644 src/main/webapp/WEB-INF/views/lastVerifyDir/lastVerifyList.jsp
create mode 100644 src/main/webapp/WEB-INF/views/medicalRecallDateDir/recallDateList.jsp
create mode 100644 src/main/webapp/WEB-INF/views/medicalRecallDir/medicalRecallList.jsp
create mode 100644 src/main/webapp/WEB-INF/views/pdf.jsp
create mode 100644 src/main/webapp/WEB-INF/views/statistics/finalStatistics.jsp
create mode 100644 src/main/webapp/WEB-INF/views/statistics/finalStatisticsDetail.jsp
create mode 100644 src/main/webapp/WEB-INF/views/statistics/firstStatistics.jsp
create mode 100644 src/main/webapp/WEB-INF/views/statistics/printCount.jsp
create mode 100644 src/main/webapp/WEB-INF/views/statistics/printInfo.jsp
create mode 100644 src/main/webapp/WEB-INF/views/statistics/scanCount.jsp
create mode 100644 src/main/webapp/WEB-INF/views/statistics/scanInfo.jsp
create mode 100644 src/main/webapp/WEB-INF/views/statistics/statisticsDetail.jsp
create mode 100644 src/main/webapp/WEB-INF/views/unfileMedicalDir/unfileMedicalList.jsp
create mode 100644 src/main/webapp/WEB-INF/views/vCountDir/doctorFileList.jsp
create mode 100644 src/main/webapp/WEB-INF/views/vCountDir/doctorFileListIframe.jsp
create mode 100644 src/main/webapp/WEB-INF/views/vCountDir/vCountList.jsp
create mode 100644 src/main/webapp/WEB-INF/web.xml
create mode 100644 src/main/webapp/error.jsp
create mode 100644 src/main/webapp/favicon.ico
create mode 100644 src/main/webapp/index.jsp
create mode 100644 src/main/webapp/login.jsp
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/.bower.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/LICENSE
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/bower.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/cheatsheet.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/component.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/composer.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/css/ionicons.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/css/ionicons.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/fonts/ionicons.eot
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/fonts/ionicons.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/fonts/ionicons.ttf
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/fonts/ionicons.woff
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/less/_ionicons-font.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/less/_ionicons-icons.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/less/_ionicons-variables.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/less/ionicons.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/alert-circled.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/alert.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-add-contact.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-add.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-alarm.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-archive.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-arrow-back.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-arrow-down-left.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-arrow-down-right.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-arrow-forward.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-arrow-up-left.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-arrow-up-right.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-battery.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-book.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-calendar.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-call.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-camera.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-chat.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-checkmark.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-clock.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-close.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-contact.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-contacts.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-data.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-developer.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-display.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-download.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-drawer.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-dropdown.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-earth.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-folder.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-forums.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-friends.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-hand.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-image.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-inbox.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-information.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-keypad.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-lightbulb.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-locate.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-location.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-mail.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-microphone.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-mixer.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-more.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-note.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-playstore.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-printer.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-promotion.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-reminder.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-remove.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-search.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-send.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-settings.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-share.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-social-user.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-social.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-sort.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-stair-drawer.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-star.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-stopwatch.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-storage.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-system-back.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-system-home.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-system-windows.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-timer.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-trash.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-user-menu.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-volume.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/android-wifi.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/aperture.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/archive.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-down-a.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-down-b.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-down-c.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-expand.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-graph-down-left.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-graph-down-right.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-graph-up-left.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-graph-up-right.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-left-a.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-left-b.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-left-c.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-move.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-resize.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-return-left.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-return-right.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-right-a.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-right-b.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-right-c.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-shrink.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-swap.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-up-a.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-up-b.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/arrow-up-c.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/asterisk.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/at.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/bag.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/battery-charging.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/battery-empty.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/battery-full.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/battery-half.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/battery-low.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/beaker.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/beer.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/bluetooth.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/bonfire.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/bookmark.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/briefcase.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/bug.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/calculator.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/calendar.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/camera.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/card.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/cash.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/chatbox-working.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/chatbox.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/chatboxes.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/chatbubble-working.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/chatbubble.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/chatbubbles.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/checkmark-circled.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/checkmark-round.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/checkmark.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/chevron-down.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/chevron-left.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/chevron-right.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/chevron-up.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/clipboard.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/clock.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/close-circled.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/close-round.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/close.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/closed-captioning.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/cloud.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/code-download.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/code-working.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/code.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/coffee.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/compass.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/compose.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/connection-bars.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/contrast.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/cube.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/disc.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/document-text.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/document.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/drag.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/earth.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/edit.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/egg.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/eject.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/email.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/eye-disabled.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/eye.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/female.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/filing.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/film-marker.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/fireball.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/flag.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/flame.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/flash-off.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/flash.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/flask.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/folder.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/fork-repo.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/fork.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/forward.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/funnel.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/game-controller-a.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/game-controller-b.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/gear-a.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/gear-b.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/grid.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/hammer.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/happy.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/headphone.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/heart-broken.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/heart.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/help-buoy.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/help-circled.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/help.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/home.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/icecream.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/icon-social-google-plus-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/icon-social-google-plus.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/image.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/images.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/information-circled.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/information.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ionic.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-alarm-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-alarm.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-albums-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-albums.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-americanfootball-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-americanfootball.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-analytics-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-analytics.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-arrow-back.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-arrow-down.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-arrow-forward.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-arrow-left.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-arrow-right.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-arrow-thin-down.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-arrow-thin-left.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-arrow-thin-right.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-arrow-thin-up.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-arrow-up.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-at-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-at.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-barcode-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-barcode.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-baseball-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-baseball.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-basketball-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-basketball.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-bell-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-bell.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-bolt-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-bolt.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-bookmarks-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-bookmarks.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-box-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-box.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-briefcase-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-briefcase.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-browsers-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-browsers.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-calculator-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-calculator.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-calendar-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-calendar.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-camera-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-camera.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-cart-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-cart.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-chatboxes-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-chatboxes.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-chatbubble-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-chatbubble.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-checkmark-empty.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-checkmark-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-checkmark.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-circle-filled.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-circle-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-clock-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-clock.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-close-empty.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-close-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-close.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-cloud-download-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-cloud-download.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-cloud-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-cloud-upload-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-cloud-upload.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-cloud.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-cloudy-night-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-cloudy-night.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-cloudy-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-cloudy.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-cog-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-cog.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-compose-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-compose.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-contact-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-contact.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-copy-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-copy.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-download-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-download.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-drag.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-email-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-email.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-expand.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-eye-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-eye.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-fastforward-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-fastforward.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-filing-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-filing.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-film-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-film.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-flag-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-flag.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-folder-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-folder.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-football-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-football.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-gear-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-gear.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-glasses-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-glasses.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-heart-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-heart.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-help-empty.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-help-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-help.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-home-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-home.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-infinite-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-infinite.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-information-empty.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-information-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-information.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-ionic-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-keypad-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-keypad.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-lightbulb-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-lightbulb.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-location-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-location.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-locked-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-locked.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-loop-strong.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-loop.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-medkit-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-medkit.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-mic-off.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-mic-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-mic.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-minus-empty.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-minus-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-minus.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-monitor-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-monitor.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-moon-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-moon.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-more-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-more.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-musical-note.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-musical-notes.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-navigate-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-navigate.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-paper-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-paper.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-paperplane-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-paperplane.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-partlysunny-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-partlysunny.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-pause-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-pause.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-paw-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-paw.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-people-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-people.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-person-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-person.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-personadd-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-personadd.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-photos-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-photos.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-pie-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-pie.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-play-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-play.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-plus-empty.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-plus-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-plus.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-pricetag-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-pricetag.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-pricetags-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-pricetags.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-printer-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-printer.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-pulse-strong.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-pulse.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-rainy-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-rainy.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-recording-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-recording.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-redo-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-redo.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-refresh-empty.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-refresh-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-refresh.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-reload.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-reverse-camera-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-reverse-camera.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-rewind-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-rewind.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-search-strong.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-search.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-settings-strong.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-settings.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-shrink.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-skipbackward-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-skipbackward.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-skipforward-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-skipforward.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-snowy.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-speedometer-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-speedometer.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-star-half.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-star-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-star.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-stopwatch-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-stopwatch.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-sunny-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-sunny.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-telephone-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-telephone.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-tennisball-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-tennisball.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-thunderstorm-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-thunderstorm.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-time-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-time.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-timer-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-timer.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-toggle-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-toggle.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-trash-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-trash.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-undo-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-undo.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-unlocked-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-unlocked.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-upload-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-upload.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-videocam-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-videocam.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-volume-high.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-volume-low.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-wineglass-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-wineglass.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-world-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ios7-world.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ipad.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/iphone.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ipod.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/jet.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/key.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/knife.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/laptop.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/leaf.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/levels.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/lightbulb.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/link.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/load-a.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/load-b.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/load-c.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/load-d.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/location.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/locked.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/log-in.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/log-out.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/loop.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/magnet.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/male.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/man.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/map.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/medkit.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/merge.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/mic-a.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/mic-b.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/mic-c.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/minus-circled.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/minus-round.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/minus.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/model-s.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/monitor.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/more.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/mouse.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/music-note.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/navicon-round.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/navicon.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/navigate.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/network.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/no-smoking.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/nuclear.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/outlet.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/paper-airplane.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/paperclip.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/pause.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/person-add.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/person-stalker.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/person.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/pie-graph.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/pin.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/pinpoint.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/pizza.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/plane.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/planet.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/play.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/playstation.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/plus-circled.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/plus-round.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/plus.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/podium.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/pound.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/power.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/pricetag.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/pricetags.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/printer.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/pull-request.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/qr-scanner.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/quote.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/radio-waves.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/record.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/refresh.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/reply-all.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/reply.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ribbon-a.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/ribbon-b.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/sad.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/scissors.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/search.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/settings.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/share.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/shuffle.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/skip-backward.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/skip-forward.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-android-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-android.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-apple-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-apple.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-bitcoin-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-bitcoin.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-buffer-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-buffer.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-designernews-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-designernews.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-dribbble-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-dribbble.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-dropbox-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-dropbox.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-facebook-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-facebook.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-foursquare-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-foursquare.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-freebsd-devil.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-github-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-github.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-google-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-google.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-googleplus-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-googleplus.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-hackernews-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-hackernews.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-instagram-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-instagram.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-linkedin-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-linkedin.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-pinterest-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-pinterest.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-reddit-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-reddit.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-rss-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-rss.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-skype-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-skype.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-tumblr-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-tumblr.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-tux.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-twitter-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-twitter.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-usd-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-usd.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-vimeo-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-vimeo.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-windows-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-windows.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-wordpress-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-wordpress.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-yahoo-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-yahoo.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-youtube-outline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/social-youtube.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/speakerphone.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/speedometer.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/spoon.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/star.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/stats-bars.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/steam.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/stop.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/thermometer.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/thumbsdown.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/thumbsup.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/toggle-filled.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/toggle.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/trash-a.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/trash-b.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/trophy.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/umbrella.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/university.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/unlocked.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/upload.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/usb.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/videocamera.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/volume-high.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/volume-low.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/volume-medium.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/volume-mute.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/wand.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/waterdrop.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/wifi.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/wineglass.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/woman.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/wrench.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/png/512/xbox.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/readme.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/scss/_ionicons-font.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/scss/_ionicons-icons.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/scss/_ionicons-variables.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/scss/ionicons.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/alert-circled.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/alert.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-add-circle.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-add.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-alarm-clock.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-alert.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-apps.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-archive.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-arrow-back.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-arrow-down.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-arrow-dropdown-circle.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-arrow-dropdown.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-arrow-dropleft-circle.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-arrow-dropleft.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-arrow-dropright-circle.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-arrow-dropright.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-arrow-dropup-circle.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-arrow-dropup.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-arrow-forward.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-arrow-up.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-attach.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-bar.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-bicycle.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-boat.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-bookmark.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-bulb.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-bus.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-calendar.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-call.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-camera.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-cancel.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-car.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-cart.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-chat.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-checkbox-blank.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-checkbox-outline-blank.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-checkbox-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-checkbox.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-checkmark-circle.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-clipboard.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-close.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-cloud-circle.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-cloud-done.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-cloud-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-cloud.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-color-palette.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-compass.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-contact.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-contacts.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-contract.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-create.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-delete.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-desktop.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-document.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-done-all.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-done.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-download.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-drafts.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-exit.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-expand.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-favorite-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-favorite.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-film.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-folder-open.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-folder.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-funnel.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-globe.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-hand.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-hangout.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-happy.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-home.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-image.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-laptop.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-list.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-locate.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-lock.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-mail.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-map.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-menu.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-microphone-off.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-microphone.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-more-horizontal.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-more-vertical.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-navigate.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-notifications-none.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-notifications-off.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-notifications.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-open.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-options.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-people.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-person-add.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-person.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-phone-landscape.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-phone-portrait.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-pin.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-plane.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-playstore.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-print.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-radio-button-off.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-radio-button-on.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-refresh.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-remove-circle.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-remove.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-restaurant.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-sad.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-search.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-send.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-settings.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-share-alt.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-share.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-star-half.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-star-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-star.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-stopwatch.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-subway.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-sunny.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-sync.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-textsms.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-time.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-train.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-unlock.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-upload.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-volume-down.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-volume-mute.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-volume-off.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-volume-up.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-walk.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-warning.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-watch.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/android-wifi.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/aperture.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/archive.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-down-a.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-down-b.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-down-c.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-expand.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-graph-down-left.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-graph-down-right.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-graph-up-left.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-graph-up-right.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-left-a.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-left-b.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-left-c.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-move.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-resize.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-return-left.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-return-right.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-right-a.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-right-b.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-right-c.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-shrink.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-swap.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-up-a.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-up-b.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/arrow-up-c.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/asterisk.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/at.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/backspace-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/backspace.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/bag.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/battery-charging.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/battery-empty.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/battery-full.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/battery-half.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/battery-low.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/beaker.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/beer.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/bluetooth.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/bonfire.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/bookmark.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/bowtie.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/briefcase.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/bug.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/calculator.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/calendar.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/camera.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/card.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/cash.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/chatbox-working.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/chatbox.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/chatboxes.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/chatbubble-working.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/chatbubble.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/chatbubbles.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/checkmark-circled.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/checkmark-round.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/checkmark.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/chevron-down.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/chevron-left.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/chevron-right.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/chevron-up.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/clipboard.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/clock.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/close-circled.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/close-round.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/close.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/closed-captioning.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/cloud.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/code-download.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/code-working.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/code.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/coffee.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/compass.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/compose.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/connection-bars.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/contrast.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/crop.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/cube.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/disc.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/document-text.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/document.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/drag.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/earth.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/easel.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/edit.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/egg.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/eject.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/email-unread.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/email.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/erlenmeyer-flask-bubbles.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/erlenmeyer-flask.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/eye-disabled.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/eye.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/female.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/filing.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/film-marker.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/fireball.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/flag.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/flame.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/flash-off.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/flash.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/folder.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/fork-repo.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/fork.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/forward.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/funnel.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/gear-a.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/gear-b.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/grid.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/hammer.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/happy-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/happy.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/headphone.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/heart-broken.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/heart.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/help-buoy.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/help-circled.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/help.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/home.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/icecream.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/image.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/images.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/information-circled.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/information.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ionic.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-alarm-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-alarm.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-albums-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-albums.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-americanfootball-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-americanfootball.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-analytics-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-analytics.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-arrow-back.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-arrow-down.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-arrow-forward.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-arrow-left.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-arrow-right.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-arrow-thin-down.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-arrow-thin-left.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-arrow-thin-right.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-arrow-thin-up.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-arrow-up.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-at-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-at.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-barcode-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-barcode.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-baseball-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-baseball.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-basketball-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-basketball.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-bell-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-bell.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-body-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-body.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-bolt-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-bolt.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-book-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-book.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-bookmarks-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-bookmarks.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-box-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-box.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-briefcase-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-briefcase.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-browsers-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-browsers.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-calculator-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-calculator.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-calendar-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-calendar.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-camera-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-camera.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-cart-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-cart.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-chatboxes-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-chatboxes.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-chatbubble-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-chatbubble.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-checkmark-empty.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-checkmark-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-checkmark.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-circle-filled.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-circle-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-clock-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-clock.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-close-empty.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-close-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-close.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-cloud-download-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-cloud-download.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-cloud-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-cloud-upload-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-cloud-upload.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-cloud.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-cloudy-night-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-cloudy-night.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-cloudy-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-cloudy.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-cog-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-cog.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-color-filter-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-color-filter.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-color-wand-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-color-wand.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-compose-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-compose.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-contact-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-contact.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-copy-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-copy.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-crop-strong.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-crop.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-download-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-download.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-drag.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-email-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-email.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-eye-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-eye.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-fastforward-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-fastforward.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-filing-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-filing.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-film-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-film.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-flag-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-flag.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-flame-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-flame.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-flask-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-flask.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-flower-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-flower.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-folder-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-folder.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-football-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-football.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-game-controller-a-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-game-controller-a.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-game-controller-b-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-game-controller-b.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-gear-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-gear.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-glasses-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-glasses.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-grid-view-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-grid-view.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-heart-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-heart.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-help-empty.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-help-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-help.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-home-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-home.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-infinite-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-infinite.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-information-empty.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-information-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-information.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-ionic-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-keypad-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-keypad.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-lightbulb-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-lightbulb.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-list-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-list.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-location-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-location.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-locked-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-locked.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-loop-strong.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-loop.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-medical-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-medical.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-medkit-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-medkit.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-mic-off.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-mic-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-mic.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-minus-empty.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-minus-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-minus.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-monitor-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-monitor.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-moon-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-moon.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-more-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-more.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-musical-note.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-musical-notes.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-navigate-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-navigate.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-nutrition-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-nutrition.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-paper-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-paper.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-paperplane-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-paperplane.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-partlysunny-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-partlysunny.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-pause-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-pause.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-paw-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-paw.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-people-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-people.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-person-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-person.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-personadd-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-personadd.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-photos-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-photos.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-pie-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-pie.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-pint-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-pint.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-play-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-play.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-plus-empty.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-plus-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-plus.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-pricetag-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-pricetag.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-pricetags-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-pricetags.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-printer-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-printer.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-pulse-strong.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-pulse.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-rainy-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-rainy.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-recording-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-recording.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-redo-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-redo.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-refresh-empty.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-refresh-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-refresh.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-reload.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-reverse-camera-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-reverse-camera.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-rewind-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-rewind.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-rose-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-rose.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-search-strong.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-search.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-settings-strong.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-settings.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-shuffle-strong.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-shuffle.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-skipbackward-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-skipbackward.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-skipforward-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-skipforward.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-snowy.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-speedometer-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-speedometer.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-star-half.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-star-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-star.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-stopwatch-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-stopwatch.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-sunny-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-sunny.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-telephone-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-telephone.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-tennisball-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-tennisball.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-thunderstorm-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-thunderstorm.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-time-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-time.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-timer-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-timer.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-toggle-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-toggle.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-trash-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-trash.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-undo-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-undo.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-unlocked-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-unlocked.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-upload-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-upload.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-videocam-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-videocam.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-volume-high.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-volume-low.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-wineglass-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-wineglass.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-world-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ios-world.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ipad.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/iphone.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ipod.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/jet.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/key.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/knife.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/laptop.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/leaf.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/levels.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/lightbulb.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/link.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/load-a.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/load-b.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/load-c.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/load-d.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/location.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/lock-combination.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/locked.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/log-in.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/log-out.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/loop.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/magnet.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/male.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/man.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/map.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/medkit.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/merge.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/mic-a.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/mic-b.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/mic-c.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/minus-circled.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/minus-round.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/minus.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/model-s.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/monitor.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/more.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/mouse.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/music-note.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/navicon-round.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/navicon.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/navigate.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/network.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/no-smoking.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/nuclear.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/outlet.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/paintbrush.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/paintbucket.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/paper-airplane.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/paperclip.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/pause.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/person-add.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/person-stalker.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/person.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/pie-graph.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/pin.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/pinpoint.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/pizza.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/plane.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/planet.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/play.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/playstation.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/plus-circled.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/plus-round.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/plus.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/podium.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/pound.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/power.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/pricetag.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/pricetags.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/printer.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/pull-request.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/qr-scanner.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/quote.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/radio-waves.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/record.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/refresh.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/reply-all.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/reply.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ribbon-a.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/ribbon-b.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/sad-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/sad.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/scissors.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/search.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/settings.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/share.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/shuffle.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/skip-backward.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/skip-forward.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-android-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-android.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-angular-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-angular.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-apple-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-apple.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-bitcoin-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-bitcoin.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-buffer-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-buffer.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-chrome-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-chrome.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-codepen-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-codepen.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-css3-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-css3.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-designernews-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-designernews.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-dribbble-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-dribbble.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-dropbox-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-dropbox.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-euro-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-euro.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-facebook-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-facebook.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-foursquare-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-foursquare.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-freebsd-devil.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-github-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-github.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-google-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-google.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-googleplus-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-googleplus.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-hackernews-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-hackernews.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-html5-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-html5.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-instagram-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-instagram.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-javascript-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-javascript.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-linkedin-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-linkedin.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-markdown.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-nodejs.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-octocat.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-pinterest-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-pinterest.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-python.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-reddit-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-reddit.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-rss-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-rss.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-sass.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-skype-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-skype.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-snapchat-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-snapchat.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-tumblr-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-tumblr.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-tux.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-twitch-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-twitch.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-twitter-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-twitter.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-usd-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-usd.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-vimeo-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-vimeo.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-whatsapp-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-whatsapp.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-windows-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-windows.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-wordpress-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-wordpress.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-yahoo-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-yahoo.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-yen-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-yen.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-youtube-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/social-youtube.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/soup-can-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/soup-can.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/speakerphone.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/speedometer.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/spoon.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/star.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/stats-bars.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/steam.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/stop.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/thermometer.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/thumbsdown.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/thumbsup.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/toggle-filled.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/toggle.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/transgender.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/trash-a.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/trash-b.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/trophy.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/tshirt-outline.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/tshirt.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/umbrella.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/university.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/unlocked.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/upload.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/usb.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/videocamera.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/volume-high.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/volume-low.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/volume-medium.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/volume-mute.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/wand.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/waterdrop.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/wifi.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/wineglass.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/woman.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/wrench.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/Ionicons/src/xbox.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/.bower.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/.editorconfig
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/.github/ISSUE_TEMPLATE.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/.github/PULL_REQUEST_TEMPLATE.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/.travis.yml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/CHANGELOG.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/CODE_OF_CONDUCT.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/CONTRIBUTING.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/Gruntfile.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/LICENSE
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/bower.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/build/build.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/build/build3.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/build/build_standalone.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/build/build_standalone3.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/composer.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker.css.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker.standalone.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker.standalone.css.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker.standalone.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker3.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker3.css.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker3.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker3.standalone.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker3.standalone.css.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker3.standalone.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/js/bootstrap-datepicker.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/js/bootstrap-datepicker.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker-en-CA.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.ar-tn.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.ar.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.az.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.bg.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.bn.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.br.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.bs.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.ca.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.cs.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.cy.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.da.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.de.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.el.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.en-AU.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.en-CA.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.en-GB.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.en-IE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.en-NZ.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.en-ZA.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.eo.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.es.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.et.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.eu.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.fa.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.fi.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.fo.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.fr-CH.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.fr.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.gl.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.he.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.hi.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.hr.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.hu.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.hy.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.id.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.is.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.it-CH.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.it.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.ja.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.ka.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.kh.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.kk.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.km.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.ko.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.kr.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.lt.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.lv.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.me.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.mk.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.mn.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.ms.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.nl-BE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.nl.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.no.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.oc.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.pl.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.pt-BR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.pt.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.ro.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.rs-latin.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.rs.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.ru.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.si.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.sk.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.sl.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.sq.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.sr-latin.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.sr.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.sv.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.sw.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.ta.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.tg.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.th.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.tk.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.tr.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.uk.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.uz-cyrl.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.uz-latn.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.vi.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.zh-CN.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/dist/locales/bootstrap-datepicker.zh-TW.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/Makefile
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/demo_head.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/markup_component.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/markup_daterange.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/markup_inline.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/markup_input.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/option_calendarweeks.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/option_clearbtn.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/option_daysofweekdisabled.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/option_enddate.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/option_language.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/option_multidate.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/option_startdate.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/option_todaybtn.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/option_todayhighlight.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/option_weekstart.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/script/common.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/script/common.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/script/debug.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/script/html-imports.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_screenshots/script/screenshot.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_static/screenshots/demo_head.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_static/screenshots/markup_component.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_static/screenshots/markup_daterange.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_static/screenshots/markup_inline.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_static/screenshots/markup_input.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_static/screenshots/option_calendarweeks.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_static/screenshots/option_clearbtn.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_static/screenshots/option_daysofweekdisabled.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_static/screenshots/option_enddate.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_static/screenshots/option_language.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_static/screenshots/option_multidate.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_static/screenshots/option_startdate.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_static/screenshots/option_todaybtn.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_static/screenshots/option_todayhighlight.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/_static/screenshots/option_weekstart.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/conf.py
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/events.rst
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/i18n.rst
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/index.rst
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/keyboard.rst
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/make.bat
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/markup.rst
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/methods.rst
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/options.rst
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/docs/requirements.txt
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/grunt/.jshintrc
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/.jscsrc
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/.jshintrc
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/bootstrap-datepicker.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker-en-CA.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.ar-tn.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.ar.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.az.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.bg.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.bn.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.br.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.bs.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.ca.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.cs.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.cy.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.da.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.de.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.el.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.en-AU.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.en-CA.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.en-GB.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.en-IE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.en-NZ.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.en-ZA.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.eo.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.es.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.et.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.eu.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.fa.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.fi.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.fo.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.fr-CH.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.fr.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.gl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.he.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.hi.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.hr.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.hu.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.hy.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.id.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.is.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.it-CH.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.it.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.ja.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.ka.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.kh.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.kk.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.km.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.ko.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.kr.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.lt.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.lv.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.me.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.mk.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.mn.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.ms.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.nl-BE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.nl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.no.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.oc.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.pl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt-BR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.ro.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.rs-latin.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.rs.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.ru.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.si.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.sk.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.sl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.sq.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.sr-latin.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.sr.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.sv.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.sw.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.ta.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.tg.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.th.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.tk.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.tr.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.uk.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.uz-cyrl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.uz-latn.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.vi.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-CN.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-TW.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/less/.csslintrc
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/less/datepicker.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/less/datepicker3.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/package.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/assets/coverage.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/assets/jquery-1.7.1.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/assets/mock.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/assets/qunit-logging.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/assets/qunit.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/assets/qunit.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/assets/utils.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/suites/calendar-weeks.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/suites/component.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/suites/data-api.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/suites/events.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/suites/formats.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/suites/inline.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/suites/keyboard_navigation/2011.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/suites/keyboard_navigation/2012.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/suites/keyboard_navigation/all.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/suites/methods.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/suites/methods_jquery.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/suites/mouse_navigation/2011.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/suites/mouse_navigation/2012.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/suites/mouse_navigation/all.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/suites/noconflict.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/suites/options.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/suites/timezone.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/suites/touch_navigation/all.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/tests.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/tests/timezone.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-datepicker/yarn.lock
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-table/bootstrap-table.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-table/bootstrap-table.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-table/bootstrap-table.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-table/locale/bootstrap-table-zh-CN.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-timepicker/.bower.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-timepicker/CHANGELOG.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-timepicker/LICENSE
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-timepicker/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-timepicker/bower.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-timepicker/css/timepicker.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap-timepicker/js/bootstrap-timepicker.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/.bower.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/CHANGELOG.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/Gemfile
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/Gemfile.lock
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/Gruntfile.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/ISSUE_TEMPLATE.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/LICENSE
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/bower.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/dist/css/bootstrap-theme.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/dist/css/bootstrap-theme.css.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/dist/css/bootstrap-theme.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/dist/css/bootstrap-theme.min.css.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/dist/css/bootstrap.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/dist/css/bootstrap.css.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/dist/css/bootstrap.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/dist/css/bootstrap.min.css.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/dist/css/login.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/dist/css/style.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/dist/js/bootstrap.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/dist/js/bootstrap.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/dist/js/npm.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/fonts/glyphicons-halflings-regular.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff2
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/grunt/.jshintrc
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/grunt/.stylelintrc
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/grunt/browsers.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/grunt/bs-commonjs-generator.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/grunt/bs-glyphicons-data-generator.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/grunt/bs-lessdoc-parser.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/grunt/bs-raw-files-generator.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/grunt/change-version.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/grunt/configBridge.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/grunt/generate-sri.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/grunt/karma.conf.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/js/.jscsrc
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/js/.jshintrc
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/js/affix.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/js/alert.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/js/button.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/js/carousel.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/js/collapse.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/js/dropdown.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/js/modal.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/js/popover.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/js/scrollspy.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/js/tab.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/js/tooltip.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/js/transition.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/alerts.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/badges.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/bootstrap.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/breadcrumbs.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/button-groups.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/buttons.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/carousel.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/close.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/code.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/component-animations.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/dropdowns.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/forms.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/glyphicons.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/grid.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/input-groups.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/jumbotron.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/labels.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/list-group.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/media.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/alerts.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/background-variant.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/border-radius.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/buttons.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/center-block.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/clearfix.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/forms.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/gradients.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/grid-framework.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/grid.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/hide-text.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/image.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/labels.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/list-group.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/nav-divider.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/nav-vertical-align.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/opacity.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/pagination.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/panels.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/progress-bar.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/reset-filter.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/reset-text.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/resize.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/responsive-visibility.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/size.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/tab-focus.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/table-row.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/text-emphasis.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/text-overflow.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/mixins/vendor-prefixes.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/modals.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/navbar.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/navs.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/normalize.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/pager.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/pagination.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/panels.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/popovers.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/print.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/progress-bars.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/responsive-embed.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/responsive-utilities.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/scaffolding.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/tables.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/theme.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/thumbnails.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/tooltip.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/type.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/utilities.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/variables.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/less/wells.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/nuget/bootstrap.less.nuspec
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/nuget/bootstrap.nuspec
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/package-lock.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/package.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/bootstrap/package.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/.bower.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/.npmignore
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/HELP-US-OUT.txt
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/bower.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/css/font-awesome.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/css/font-awesome.css.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/css/font-awesome.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/fonts/FontAwesome.otf
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/fonts/fontawesome-webfont.eot
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/fonts/fontawesome-webfont.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/fonts/fontawesome-webfont.ttf
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/fonts/fontawesome-webfont.woff
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/fonts/fontawesome-webfont.woff2
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/less/animated.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/less/bordered-pulled.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/less/core.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/less/fixed-width.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/less/font-awesome.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/less/icons.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/less/larger.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/less/list.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/less/mixins.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/less/path.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/less/rotated-flipped.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/less/screen-reader.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/less/stacked.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/less/variables.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/scss/_animated.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/scss/_bordered-pulled.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/scss/_core.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/scss/_fixed-width.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/scss/_icons.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/scss/_larger.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/scss/_list.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/scss/_mixins.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/scss/_path.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/scss/_rotated-flipped.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/scss/_screen-reader.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/scss/_stacked.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/scss/_variables.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/font-awesome/scss/font-awesome.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/.bower.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/.editorconfig
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/.github/CONTRIBUTING.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/.github/ISSUE_TEMPLATE.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/.github/PULL_REQUEST_TEMPLATE.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/.jshintignore
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/.jshintrc
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/.travis.yml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/CHANGELOG.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/Gruntfile.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/LICENSE.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/bower.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/component.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/composer.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/css/select2.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/css/select2.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/af.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/ar.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/az.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/bg.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/bs.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/ca.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/cs.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/da.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/de.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/dsb.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/el.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/en.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/es.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/et.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/eu.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/fa.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/fi.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/fr.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/gl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/he.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/hi.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/hr.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/hsb.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/hu.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/hy.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/id.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/is.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/it.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/ja.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/km.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/ko.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/lt.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/lv.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/mk.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/ms.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/nb.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/nl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/pl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/ps.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/pt-BR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/pt.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/ro.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/ru.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/sk.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/sl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/sr-Cyrl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/sr.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/sv.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/th.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/tr.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/uk.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/vi.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/zh-CN.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/i18n/zh-TW.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/select2.full.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/select2.full.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/select2.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/dist/js/select2.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/docs/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/docs/announcements-4.0.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/docs/community.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/docs/examples.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/docs/index.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/docs/options-old.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/docs/options.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/package.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/select2.jquery.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/banner.end.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/banner.start.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/jquery.mousewheel.shim.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/jquery.select2.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/jquery.shim.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/compat/containerCss.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/compat/dropdownCss.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/compat/initSelection.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/compat/inputData.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/compat/matcher.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/compat/query.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/compat/utils.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/core.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/data/ajax.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/data/array.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/data/base.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/data/maximumInputLength.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/data/maximumSelectionLength.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/data/minimumInputLength.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/data/select.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/data/tags.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/data/tokenizer.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/defaults.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/diacritics.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/dropdown.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/dropdown/attachBody.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/dropdown/attachContainer.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/dropdown/closeOnSelect.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/dropdown/hidePlaceholder.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/dropdown/infiniteScroll.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/dropdown/minimumResultsForSearch.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/dropdown/search.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/dropdown/selectOnClose.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/dropdown/stopPropagation.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/af.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/ar.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/az.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/bg.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/bs.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/ca.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/cs.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/da.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/de.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/dsb.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/el.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/en.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/es.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/et.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/eu.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/fa.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/fi.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/fr.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/gl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/he.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/hi.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/hr.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/hsb.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/hu.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/hy.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/id.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/is.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/it.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/ja.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/km.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/ko.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/lt.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/lv.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/mk.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/ms.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/nb.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/nl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/pl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/ps.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/pt-BR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/pt.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/ro.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/ru.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/sk.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/sl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/sr-Cyrl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/sr.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/sv.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/th.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/tr.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/uk.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/vi.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/zh-CN.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/i18n/zh-TW.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/keys.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/options.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/results.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/selection/allowClear.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/selection/base.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/selection/clickMask.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/selection/eventRelay.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/selection/multiple.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/selection/placeholder.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/selection/search.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/selection/single.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/selection/stopPropagation.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/translation.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/select2/utils.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/wrapper.end.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/js/wrapper.start.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/scss/_dropdown.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/scss/_multiple.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/scss/_single.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/scss/core.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/scss/mixins/_gradients.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/scss/theme/classic/_defaults.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/scss/theme/classic/_multiple.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/scss/theme/classic/_single.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/scss/theme/classic/layout.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/scss/theme/default/_multiple.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/scss/theme/default/_single.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/src/scss/theme/default/layout.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/a11y/search-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/a11y/selection-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/data/array-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/data/base-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/data/inputData-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/data/maximumInputLength-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/data/maximumSelectionLength-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/data/minimumInputLength-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/data/select-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/data/tags-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/data/tokenizer-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/dropdown/dropdownCss-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/dropdown/positioning-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/dropdown/selectOnClose-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/dropdown/stopPropagation-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/helpers.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/integration.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/integration/dom-changes.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/integration/jquery-calls.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/integration/select2-methods.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/options/ajax-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/options/data-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/options/deprecated-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/options/translation-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/options/width-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/results/focusing-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/selection/allowClear-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/selection/containerCss-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/selection/multiple-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/selection/placeholder-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/selection/search-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/selection/single-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/selection/stopPropagation-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/unit.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/utils/decorator-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/utils/escapeMarkup-tests.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/vendor/jquery-1.7.2.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/vendor/qunit-1.23.1.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/tests/vendor/qunit-1.23.1.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/bower_components/select2/vendor/jquery-2.1.0.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/AdminLTE.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/AdminLTE.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/adminlte.css.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/adminlte.min.css.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/alt/AdminLTE-bootstrap-social.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/alt/AdminLTE-bootstrap-social.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/alt/AdminLTE-fullcalendar.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/alt/AdminLTE-fullcalendar.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/alt/AdminLTE-select2.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/alt/AdminLTE-select2.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/alt/AdminLTE-without-plugins.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/alt/AdminLTE-without-plugins.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/bootstrap-table.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/bootstrap.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/_all-skins.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/_all-skins.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-black-light.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-black-light.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-black.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-black.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-blue-light.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-blue-light.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-blue.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-blue.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-green-light.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-green-light.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-green.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-green.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-purple-light.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-purple-light.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-purple.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-purple.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-red-light.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-red-light.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-red.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-red.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-yellow-light.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-yellow-light.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-yellow.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/css/skins/skin-yellow.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/img/user2-160x160.jpg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/js/adminlte.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/js/adminlte.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/js/bootstrap.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/dist/js/demo.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-datetimepicker/bootstrap-datepicker.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-datetimepicker/bootstrap-datepicker.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-datetimepicker/bootstrap-datetimepicker.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-datetimepicker/bootstrap-datetimepicker.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-datetimepicker/moment-with-locales.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-dialog/bootstrap-dialog.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-dialog/bootstrap-dialog.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/.github/CODE_OF_CONDUCT.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/.github/CONTRIBUTING.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/.github/FUNDING.yml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/.github/ISSUE_TEMPLATE.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/.github/PULL_REQUEST_TEMPLATE.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/.github/config.yml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/.github/stale.yml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/.gitignore
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/.npmignore
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/CHANGE.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/LICENSE.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/bower.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/composer.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/css/fileinput-rtl.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/css/fileinput-rtl.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/css/fileinput.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/css/fileinput.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/examples/index.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/img/loading-sm.gif
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/img/loading.gif
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/fileinput.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/fileinput.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/LANG.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/ar.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/az.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/bg.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/ca.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/cr.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/cs.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/da.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/de.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/el.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/es.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/et.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/fa.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/fi.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/fr.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/gl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/he.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/hu.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/id.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/it.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/ja.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/ka.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/kr.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/kz.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/lt.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/nl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/no.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/pl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/pt-BR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/pt.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/ro.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/ru.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/sk.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/sl.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/sv.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/th.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/tr.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/uk.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/uz.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/vi.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/zh-TW.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/locales/zh.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/plugins/piexif.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/plugins/piexif.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/plugins/purify.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/plugins/purify.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/plugins/sortable.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/js/plugins/sortable.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/nuget/Package.nuspec
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/nuget/build.bat
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/package.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/scss/fileinput-rtl.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/scss/fileinput.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/scss/themes/explorer-fa/theme.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/scss/themes/explorer-fas/theme.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/scss/themes/explorer/theme.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/themes/explorer-fa/theme.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/themes/explorer-fa/theme.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/themes/explorer-fa/theme.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/themes/explorer-fa/theme.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/themes/explorer-fas/theme.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/themes/explorer-fas/theme.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/themes/explorer-fas/theme.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/themes/explorer-fas/theme.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/themes/explorer/theme.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/themes/explorer/theme.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/themes/explorer/theme.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/themes/explorer/theme.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/themes/fa/theme.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/themes/fa/theme.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/themes/fas/theme.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/themes/fas/theme.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/themes/gly/theme.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-fileinput-master/themes/gly/theme.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/.eslintignore
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/.github/FUNDING.yml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/.github/ISSUE_TEMPLATE.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/.github/move.yml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/.gitignore
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/CHANGELOG.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/CONTRIBUTING.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/Gruntfile.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/LICENSE
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/bower.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/composer.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/css/bootstrap-select.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/css/bootstrap-select.css.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/css/bootstrap-select.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/bootstrap-select.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/bootstrap-select.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/bootstrap-select.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/bootstrap-select.min.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-am_ET.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-am_ET.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-am_ET.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-ar_AR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-ar_AR.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-ar_AR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-bg_BG.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-bg_BG.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-bg_BG.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-cs_CZ.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-cs_CZ.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-cs_CZ.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-da_DK.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-da_DK.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-da_DK.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-de_DE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-de_DE.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-de_DE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-en_US.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-en_US.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-en_US.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-es_CL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-es_CL.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-es_CL.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-es_ES.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-es_ES.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-es_ES.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-et_EE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-et_EE.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-et_EE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-eu.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-eu.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-eu.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-fa_IR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-fa_IR.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-fa_IR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-fi_FI.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-fi_FI.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-fi_FI.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-fr_FR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-fr_FR.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-fr_FR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-hr_HR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-hr_HR.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-hr_HR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-hu_HU.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-hu_HU.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-hu_HU.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-id_ID.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-id_ID.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-id_ID.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-it_IT.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-it_IT.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-it_IT.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-ja_JP.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-ja_JP.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-ja_JP.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-kh_KM.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-kh_KM.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-kh_KM.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-ko_KR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-ko_KR.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-ko_KR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-lt_LT.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-lt_LT.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-lt_LT.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-lv_LV.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-lv_LV.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-lv_LV.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-nb_NO.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-nb_NO.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-nb_NO.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-nl_NL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-nl_NL.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-nl_NL.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-pl_PL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-pl_PL.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-pl_PL.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-pt_BR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-pt_BR.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-pt_BR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-pt_PT.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-pt_PT.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-pt_PT.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-ro_RO.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-ro_RO.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-ro_RO.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-ru_RU.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-ru_RU.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-ru_RU.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-sk_SK.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-sk_SK.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-sk_SK.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-sl_SI.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-sl_SI.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-sl_SI.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-sv_SE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-sv_SE.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-sv_SE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-tr_TR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-tr_TR.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-tr_TR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-ua_UA.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-ua_UA.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-ua_UA.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-vi_VN.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-vi_VN.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-vi_VN.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-zh_CN.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-zh_CN.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-zh_CN.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-zh_TW.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-zh_TW.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/dist/js/i18n/defaults-zh_TW.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/custom_theme/ajax/libs/highlight.js/9.15.6/css/github.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/custom_theme/ajax/libs/highlight.js/9.15.6/js/highlight.pack.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/custom_theme/css/base.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/custom_theme/js/base.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/custom_theme/main.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/custom_theme/nav.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/custom_theme/toc.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/css/custom.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/css/bootstrap-select.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/css/bootstrap-select.css.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/css/bootstrap-select.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/bootstrap-select.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/bootstrap-select.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/bootstrap-select.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/bootstrap-select.min.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-am_ET.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-am_ET.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-am_ET.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-ar_AR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-ar_AR.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-ar_AR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-bg_BG.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-bg_BG.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-bg_BG.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-cs_CZ.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-cs_CZ.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-cs_CZ.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-da_DK.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-da_DK.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-da_DK.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-de_DE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-de_DE.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-de_DE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-en_US.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-en_US.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-en_US.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-es_CL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-es_CL.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-es_CL.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-es_ES.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-es_ES.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-es_ES.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-et_EE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-et_EE.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-et_EE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-eu.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-eu.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-eu.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-fa_IR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-fa_IR.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-fa_IR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-fi_FI.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-fi_FI.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-fi_FI.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-fr_FR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-fr_FR.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-fr_FR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-hr_HR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-hr_HR.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-hr_HR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-hu_HU.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-hu_HU.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-hu_HU.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-id_ID.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-id_ID.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-id_ID.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-it_IT.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-it_IT.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-it_IT.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-ja_JP.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-ja_JP.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-ja_JP.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-kh_KM.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-kh_KM.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-kh_KM.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-ko_KR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-ko_KR.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-ko_KR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-lt_LT.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-lt_LT.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-lt_LT.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-lv_LV.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-lv_LV.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-lv_LV.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-nb_NO.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-nb_NO.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-nb_NO.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-nl_NL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-nl_NL.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-nl_NL.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-pl_PL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-pl_PL.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-pl_PL.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-pt_BR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-pt_BR.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-pt_BR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-pt_PT.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-pt_PT.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-pt_PT.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-ro_RO.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-ro_RO.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-ro_RO.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-ru_RU.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-ru_RU.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-ru_RU.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-sk_SK.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-sk_SK.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-sk_SK.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-sl_SI.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-sl_SI.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-sl_SI.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-sv_SE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-sv_SE.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-sv_SE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-tr_TR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-tr_TR.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-tr_TR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-ua_UA.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-ua_UA.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-ua_UA.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-vi_VN.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-vi_VN.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-vi_VN.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-zh_CN.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-zh_CN.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-zh_CN.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-zh_TW.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-zh_TW.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/dist/js/i18n/defaults-zh_TW.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/examples.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/index.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/methods.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/options.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/playground/3/index.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/playground/index.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/docs/playground/plnkrOpener.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/docs/mkdocs.yml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/.eslintrc.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/bootstrap-select.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-am_ET.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-ar_AR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-bg_BG.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-cs_CZ.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-da_DK.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-de_DE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-en_US.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-es_CL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-es_ES.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-et_EE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-eu.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-fa_IR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-fi_FI.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-fr_FR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-hr_HR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-hu_HU.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-id_ID.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-it_IT.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-ja_JP.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-kh_KM.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-ko_KR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-lt_LT.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-lv_LV.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-nb_NO.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-nl_NL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-pl_PL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-pt_BR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-pt_PT.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-ro_RO.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-ru_RU.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-sk_SK.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-sl_SI.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-sv_SE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-tr_TR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-ua_UA.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-vi_VN.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-zh_CN.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/i18n/defaults-zh_TW.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/umd-intro.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/js/umd-outro.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/less/bootstrap-select.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/less/variables.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/nuget/MyGet.ps1
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/nuget/bootstrap-select.nuspec
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/package-lock.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/package.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/sass/bootstrap-select.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/sass/variables.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/tests/bootstrap3.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select-1.13.0-dev/tests/bootstrap4.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select/bootstrap-select.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-select/bootstrap-select.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-slider/bootstrap-slider.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-slider/slider.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/.browserslistrc
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/.eslintrc.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/.github/ISSUE_TEMPLATE.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/.gitignore
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/.npmignore
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/.stylelintrc
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/.travis.yml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/CHANGELOG.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/CONTRIBUTING.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/DONATORS.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/FUNDING.yml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/Gemfile
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/Gruntfile.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/LICENSE
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/_config.yml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/bootstrap-table.jquery.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/bower.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/composer.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/deploy_key.enc
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/bootstrap-table-locale-all.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/bootstrap-table-locale-all.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/bootstrap-table-vue.esm.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/bootstrap-table-vue.esm.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/bootstrap-table-vue.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/bootstrap-table-vue.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/bootstrap-table.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/bootstrap-table.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/bootstrap-table.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/bootstrap-table.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/accent-neutralise/bootstrap-table-accent-neutralise.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/accent-neutralise/bootstrap-table-accent-neutralise.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/addrbar/bootstrap-table-addrbar.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/addrbar/bootstrap-table-addrbar.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/angular/bootstrap-table-angular.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/angular/bootstrap-table-angular.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/auto-refresh/bootstrap-table-auto-refresh.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/auto-refresh/bootstrap-table-auto-refresh.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/auto-refresh/bootstrap-table-auto-refresh.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/cell-input/bootstrap-table-cell-input.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/cell-input/bootstrap-table-cell-input.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/cell-input/bootstrap-table-cell-input.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/cell-input/bootstrap-table-cell-input.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/click-edit-row/bootstrap-table-click-edit-row.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/click-edit-row/bootstrap-table-click-edit-row.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/click-edit-row/bootstrap-table-click-edit-row.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/cookie/bootstrap-table-cookie.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/cookie/bootstrap-table-cookie.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/copy-rows/bootstrap-table-copy-rows.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/copy-rows/bootstrap-table-copy-rows.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/defer-url/bootstrap-table-defer-url.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/defer-url/bootstrap-table-defer-url.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/editable/bootstrap-table-editable.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/editable/bootstrap-table-editable.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/export/bootstrap-table-export.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/export/bootstrap-table-export.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/filter-control/bootstrap-table-filter-control.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/filter-control/bootstrap-table-filter-control.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/filter-control/bootstrap-table-filter-control.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/filter-control/bootstrap-table-filter-control.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/filter/bootstrap-table-filter.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/filter/bootstrap-table-filter.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/fixed-columns/bootstrap-table-fixed-columns.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/fixed-columns/bootstrap-table-fixed-columns.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/fixed-columns/bootstrap-table-fixed-columns.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/fixed-columns/bootstrap-table-fixed-columns.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/flat-json/bootstrap-table-flat-json.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/flat-json/bootstrap-table-flat-json.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/group-by-v2/bootstrap-table-group-by.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/group-by-v2/bootstrap-table-group-by.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/group-by-v2/bootstrap-table-group-by.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/group-by-v2/bootstrap-table-group-by.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/group-by/bootstrap-table-group-by.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/group-by/bootstrap-table-group-by.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/group-by/bootstrap-table-group-by.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/i18n-enhance/bootstrap-table-i18n-enhance.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/i18n-enhance/bootstrap-table-i18n-enhance.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/key-events/bootstrap-table-key-events.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/key-events/bootstrap-table-key-events.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/mobile/bootstrap-table-mobile.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/mobile/bootstrap-table-mobile.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/multi-column-toggle/bootstrap-table-multi-toggle.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/multi-column-toggle/bootstrap-table-multi-toggle.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/multiple-search/bootstrap-table-multiple-search.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/multiple-search/bootstrap-table-multiple-search.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/multiple-selection-row/bootstrap-table-multiple-selection-row.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/multiple-selection-row/bootstrap-table-multiple-selection-row.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/multiple-selection-row/bootstrap-table-multiple-selection-row.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/multiple-sort/bootstrap-table-multiple-sort.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/multiple-sort/bootstrap-table-multiple-sort.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/natural-sorting/bootstrap-table-natural-sorting.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/natural-sorting/bootstrap-table-natural-sorting.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/page-jump-to/bootstrap-table-page-jump-to.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/page-jump-to/bootstrap-table-page-jump-to.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/page-jump-to/bootstrap-table-page-jump-to.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/page-jump-to/bootstrap-table-page-jump-to.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/pipeline/bootstrap-table-pipeline.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/pipeline/bootstrap-table-pipeline.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/print/bootstrap-table-print.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/print/bootstrap-table-print.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/reorder-columns/bootstrap-table-reorder-columns.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/reorder-columns/bootstrap-table-reorder-columns.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/reorder-rows/bootstrap-table-reorder-rows.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/reorder-rows/bootstrap-table-reorder-rows.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/reorder-rows/bootstrap-table-reorder-rows.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/reorder-rows/bootstrap-table-reorder-rows.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/resizable/bootstrap-table-resizable.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/resizable/bootstrap-table-resizable.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/select2-filter/bootstrap-table-select2-filter.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/select2-filter/bootstrap-table-select2-filter.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/sticky-header/bootstrap-table-sticky-header.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/sticky-header/bootstrap-table-sticky-header.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/sticky-header/bootstrap-table-sticky-header.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/sticky-header/bootstrap-table-sticky-header.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/toolbar/bootstrap-table-toolbar.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/toolbar/bootstrap-table-toolbar.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/tree-column/bootstrap-table-tree-column.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/tree-column/bootstrap-table-tree-column.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/tree-column/bootstrap-table-tree-column.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/treegrid/bootstrap-table-treegrid.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/extensions/treegrid/bootstrap-table-treegrid.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-af-ZA.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-af-ZA.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-ar-SA.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-ar-SA.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-ca-ES.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-ca-ES.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-cs-CZ.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-cs-CZ.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-da-DK.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-da-DK.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-de-DE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-de-DE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-el-GR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-el-GR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-en-US.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-en-US.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-es-AR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-es-AR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-es-CL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-es-CL.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-es-CR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-es-CR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-es-ES.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-es-ES.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-es-MX.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-es-MX.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-es-NI.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-es-NI.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-es-SP.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-es-SP.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-et-EE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-et-EE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-eu-EU.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-eu-EU.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-fa-IR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-fa-IR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-fi-FI.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-fi-FI.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-fr-BE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-fr-BE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-fr-CH.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-fr-CH.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-fr-FR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-fr-FR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-fr-LU.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-fr-LU.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-he-IL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-he-IL.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-hr-HR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-hr-HR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-hu-HU.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-hu-HU.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-id-ID.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-id-ID.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-it-IT.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-it-IT.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-ja-JP.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-ja-JP.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-ka-GE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-ka-GE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-ko-KR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-ko-KR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-ms-MY.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-ms-MY.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-nb-NO.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-nb-NO.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-nl-BE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-nl-BE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-nl-NL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-nl-NL.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-pl-PL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-pl-PL.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-pt-BR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-pt-BR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-pt-PT.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-pt-PT.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-ro-RO.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-ro-RO.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-ru-RU.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-ru-RU.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-sk-SK.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-sk-SK.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-sv-SE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-sv-SE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-th-TH.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-th-TH.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-tr-TR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-tr-TR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-uk-UA.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-uk-UA.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-ur-PK.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-ur-PK.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-uz-Latn-UZ.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-uz-Latn-UZ.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-vi-VN.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-vi-VN.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-zh-CN.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-zh-CN.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-zh-TW.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/locale/bootstrap-table-zh-TW.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/themes/bulma/bootstrap-table-bulma.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/themes/bulma/bootstrap-table-bulma.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/themes/bulma/bootstrap-table-bulma.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/themes/bulma/bootstrap-table-bulma.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/themes/foundation/bootstrap-table-foundation.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/themes/foundation/bootstrap-table-foundation.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/themes/foundation/bootstrap-table-foundation.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/themes/foundation/bootstrap-table-foundation.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/themes/materialize/bootstrap-table-materialize.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/themes/materialize/bootstrap-table-materialize.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/themes/materialize/bootstrap-table-materialize.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/themes/materialize/bootstrap-table-materialize.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/themes/semantic/bootstrap-table-semantic.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/themes/semantic/bootstrap-table-semantic.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/themes/semantic/bootstrap-table-semantic.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/dist/themes/semantic/bootstrap-table-semantic.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/LICENSE
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/en.yml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/en/documentation/column-options.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/en/documentation/events.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/en/documentation/localizations.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/en/documentation/methods.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/en/documentation/table-options.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/en/donate.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/en/faq/faq.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/en/footer.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/en/getting-started/download.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/en/getting-started/grunt.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/en/getting-started/usage.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/en/getting-started/whats-include.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/en/home/feature.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/es.yml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/es/documentation/column-options.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/es/documentation/events.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/es/documentation/localizations.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/es/documentation/methods.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/es/documentation/table-options.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/es/donate.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/es/faq/faq.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/es/footer.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/es/getting-started/download.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/es/getting-started/grunt.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/es/getting-started/usage.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/es/getting-started/whats-include.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/es/home/feature.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/zh-cn.yml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/zh-cn/documentation/column-options.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/zh-cn/documentation/events.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/zh-cn/documentation/localizations.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/zh-cn/documentation/methods.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/zh-cn/documentation/table-options.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/zh-cn/donate.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/zh-cn/faq/faq.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/zh-cn/footer.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/zh-cn/getting-started/download.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/zh-cn/getting-started/grunt.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/zh-cn/getting-started/usage.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/zh-cn/getting-started/whats-include.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_i18n/zh-cn/home/feature.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_includes/footer.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_includes/header.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_includes/latest-release.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_includes/nav.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_includes/social-buttons.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_layouts/default.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_layouts/home.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_plugins/markdown-tag.rb
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/_plugins/multiple-languages.rb
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/apple-touch-icon.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/bootstrap/css/bootstrap-theme.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/bootstrap/css/bootstrap-theme.css.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/bootstrap/css/bootstrap-theme.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/bootstrap/css/bootstrap.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/bootstrap/css/bootstrap.css.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/bootstrap/css/bootstrap.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/bootstrap/fonts/glyphicons-halflings-regular.eot
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/bootstrap/fonts/glyphicons-halflings-regular.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/bootstrap/fonts/glyphicons-halflings-regular.ttf
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/bootstrap/fonts/glyphicons-halflings-regular.woff
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/bootstrap/js/bootstrap.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/bootstrap/js/bootstrap.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/bootstrap/js/npm.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/css/docs.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/css/sidenav.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/css/style.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/flash/ZeroClipboard.swf
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/images/alipay.jpg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/images/alipayLogo.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/images/paypalLogo.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/images/weixin.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/images/weixinLogo.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/js/common.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/js/customize.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/js/docs.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/js/ie-emulation-modes-warning.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/js/ie10-viewport-bug-workaround.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/js/ie8-responsive-file-warning.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/js/jquery.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/assets/js/sidenav.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/data/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/data/data1/demo.response.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/data/data2/demo.response.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/data/data3/demo.response.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/data/data4/demo.response.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/data/data5/demo.response.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/data/extensions.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/bootstrap-table-locale-all.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/bootstrap-table-locale-all.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/bootstrap-table.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/bootstrap-table.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/bootstrap-table.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/bootstrap-table.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/accent-neutralise/bootstrap-table-accent-neutralise.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/accent-neutralise/bootstrap-table-accent-neutralise.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/angular/bootstrap-table-angular.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/angular/bootstrap-table-angular.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/auto-refresh/bootstrap-table-auto-refresh.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/auto-refresh/bootstrap-table-auto-refresh.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/auto-refresh/bootstrap-table-auto-refresh.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/click-edit-row/bootstrap-table-click-edit-row.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/click-edit-row/bootstrap-table-click-edit-row.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/click-edit-row/bootstrap-table-click-edit-row.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/cookie/bootstrap-table-cookie.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/cookie/bootstrap-table-cookie.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/copy-rows/bootstrap-table-copy-rows.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/copy-rows/bootstrap-table-copy-rows.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/editable/bootstrap-table-editable.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/editable/bootstrap-table-editable.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/export/bootstrap-table-export.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/export/bootstrap-table-export.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/filter-control/bootstrap-table-filter-control.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/filter-control/bootstrap-table-filter-control.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/filter-control/bootstrap-table-filter-control.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/filter/bootstrap-table-filter.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/filter/bootstrap-table-filter.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/flat-json/bootstrap-table-flat-json.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/flat-json/bootstrap-table-flat-json.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/group-by-v2/bootstrap-table-group-by.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/group-by-v2/bootstrap-table-group-by.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/group-by-v2/bootstrap-table-group-by.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/group-by/bootstrap-table-group-by.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/group-by/bootstrap-table-group-by.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/group-by/bootstrap-table-group-by.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/i18n-enhance/bootstrap-table-i18n-enhance.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/i18n-enhance/bootstrap-table-i18n-enhance.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/key-events/bootstrap-table-key-events.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/key-events/bootstrap-table-key-events.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/mobile/bootstrap-table-mobile.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/mobile/bootstrap-table-mobile.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/multi-column-toggle/bootstrap-table-multi-toggle.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/multi-column-toggle/bootstrap-table-multi-toggle.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/multiple-search/bootstrap-table-multiple-search.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/multiple-search/bootstrap-table-multiple-search.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/multiple-selection-row/bootstrap-table-multiple-selection-row.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/multiple-selection-row/bootstrap-table-multiple-selection-row.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/multiple-selection-row/bootstrap-table-multiple-selection-row.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/multiple-sort/bootstrap-table-multiple-sort.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/multiple-sort/bootstrap-table-multiple-sort.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/natural-sorting/bootstrap-table-natural-sorting.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/natural-sorting/bootstrap-table-natural-sorting.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/print/bootstrap-table-print.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/print/bootstrap-table-print.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/reorder-columns/bootstrap-table-reorder-columns.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/reorder-columns/bootstrap-table-reorder-columns.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/reorder-rows/bootstrap-table-reorder-rows.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/reorder-rows/bootstrap-table-reorder-rows.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/reorder-rows/bootstrap-table-reorder-rows.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/resizable/bootstrap-table-resizable.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/resizable/bootstrap-table-resizable.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/select2-filter/bootstrap-table-select2-filter.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/select2-filter/bootstrap-table-select2-filter.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/sticky-header/bootstrap-table-sticky-header.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/sticky-header/bootstrap-table-sticky-header.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/sticky-header/bootstrap-table-sticky-header.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/toolbar/bootstrap-table-toolbar.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/toolbar/bootstrap-table-toolbar.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/tree-column/bootstrap-table-tree-column.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/tree-column/bootstrap-table-tree-column.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/extensions/tree-column/bootstrap-table-tree-column.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-af-ZA.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-af-ZA.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-ar-SA.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-ar-SA.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-ca-ES.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-ca-ES.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-cs-CZ.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-cs-CZ.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-da-DK.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-da-DK.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-de-DE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-de-DE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-el-GR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-el-GR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-en-US.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-en-US.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-es-AR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-es-AR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-es-CL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-es-CL.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-es-CR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-es-CR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-es-ES.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-es-ES.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-es-MX.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-es-MX.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-es-NI.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-es-NI.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-es-SP.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-es-SP.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-et-EE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-et-EE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-fa-IR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-fa-IR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-fr-BE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-fr-BE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-fr-FR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-fr-FR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-he-IL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-he-IL.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-hr-HR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-hr-HR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-hu-HU.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-hu-HU.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-id-ID.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-id-ID.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-it-IT.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-it-IT.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-ja-JP.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-ja-JP.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-ka-GE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-ka-GE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-ko-KR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-ko-KR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-ms-MY.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-ms-MY.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-nb-NO.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-nb-NO.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-nl-NL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-nl-NL.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-pl-PL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-pl-PL.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-pt-BR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-pt-BR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-pt-PT.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-pt-PT.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-ro-RO.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-ro-RO.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-ru-RU.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-ru-RU.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-sk-SK.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-sk-SK.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-sv-SE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-sv-SE.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-th-TH.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-th-TH.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-tr-TR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-tr-TR.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-uk-UA.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-uk-UA.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-ur-PK.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-ur-PK.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-uz-Latn-UZ.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-uz-Latn-UZ.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-vi-VN.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-vi-VN.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-zh-CN.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-zh-CN.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-zh-TW.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/dist/locale/bootstrap-table-zh-TW.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/documentation.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/donate.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/examples.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/extensions.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/faq.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/favicon.ico
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/getting-started.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/index.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/robots.txt
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/docs/sitemap.xml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/index.d.ts
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/package.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/rollup.config.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/CNAME
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/LICENSE
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_data/core-team.yml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_data/nav.yml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_data/themes.yml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_data/translations.yml
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/ads.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/analytics.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/docs-navbar.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/docs-sidebar.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/favicons.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/footer.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/header.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/icons/download.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/icons/facebook.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/icons/github.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/icons/import.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/icons/lightning.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/icons/linkedin.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/icons/mail.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/icons/menu.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/icons/opencollective.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/icons/twitter.svg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/opencollective.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/scripts.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/skippy.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_includes/stylesheet.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_layouts/default.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_layouts/docs.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_layouts/home.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/_layouts/simple.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/assets/css/docs.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/assets/css/docs.min.css.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/assets/css/style.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/assets/images/alipay.jpg
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/assets/images/alipayLogo.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/assets/images/bootstrap3.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/assets/images/bootstrap4.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/assets/images/bulma.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/assets/images/foundation.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/assets/images/materialize.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/assets/images/paypalLogo.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/assets/images/semantic.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/assets/images/weixin.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/assets/images/weixinLogo.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/assets/js/docs.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/about/license.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/about/overview.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/about/team.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/about/translations.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/api/column-options.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/api/events.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/api/localizations.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/api/methods.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/api/table-options.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/accent-neutralise.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/addrbar.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/auto-refresh.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/cell-input.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/cookie.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/copy-rows.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/defer-url.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/editable.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/export.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/filter-control.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/fixed-columns.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/group-by-v2.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/i18n-enhance.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/key-events.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/mobile.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/multiple-sort.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/natural-sorting.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/page-jump-to.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/print.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/reorder-columns.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/reorder-rows.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/resizable.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/sticky-header.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/toolbar.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/extensions/treegrid.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/faq.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/getting-started/browsers-devices.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/getting-started/build-tools.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/getting-started/contents.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/getting-started/download.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/getting-started/introduction.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/getting-started/usage.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/vuejs/browser.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/vuejs/component.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/vuejs/introduction.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/docs/vuejs/webpack.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/donate.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/favicon.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/index.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/news.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/robots.txt
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/themes/bootstrap3.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/themes/bulma.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/themes/foundation.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/themes/index.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/themes/materialize.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/site/themes/semantic.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/.babelrc
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/bootstrap-table.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/bootstrap-table.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/bootstrap-table.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/constants/index.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/accent-neutralise/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/accent-neutralise/bootstrap-table-accent-neutralise.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/accent-neutralise/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/addrbar/bootstrap-table-addrbar.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/angular/bootstrap-table-angular.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/auto-refresh/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/auto-refresh/bootstrap-table-auto-refresh.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/auto-refresh/bootstrap-table-auto-refresh.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/auto-refresh/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/cell-input/bootstrap-table-cell-input.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/cell-input/bootstrap-table-cell-input.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/cell-input/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/click-edit-row/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/click-edit-row/bootstrap-table-click-edit-row.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/click-edit-row/bootstrap-table-click-edit-row.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/cookie/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/cookie/bootstrap-table-cookie.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/cookie/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/copy-rows/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/copy-rows/bootstrap-table-copy-rows.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/copy-rows/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/defer-url/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/defer-url/bootstrap-table-defer-url.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/defer-url/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/editable/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/editable/bootstrap-table-editable.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/editable/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/export/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/export/bootstrap-table-export.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/export/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/filter-control/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/filter-control/bootstrap-table-filter-control.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/filter-control/bootstrap-table-filter-control.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/filter-control/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/filter/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/filter/bootstrap-table-filter.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/filter/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/fixed-columns/bootstrap-table-fixed-columns.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/fixed-columns/bootstrap-table-fixed-columns.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/flat-json/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/flat-json/bootstrap-table-flat-json.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/flat-json/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/group-by-v2/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/group-by-v2/bootstrap-table-group-by.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/group-by-v2/bootstrap-table-group-by.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/group-by-v2/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/group-by/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/group-by/bootstrap-table-group-by.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/group-by/bootstrap-table-group-by.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/group-by/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/i18n-enhance/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/i18n-enhance/bootstrap-table-i18n-enhance.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/i18n-enhance/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/key-events/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/key-events/bootstrap-table-key-events.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/key-events/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/mobile/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/mobile/bootstrap-table-mobile.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/mobile/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/multi-column-toggle/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/multi-column-toggle/bootstrap-table-multi-toggle.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/multi-column-toggle/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/multiple-search/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/multiple-search/bootstrap-table-multiple-search.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/multiple-search/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/multiple-selection-row/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/multiple-selection-row/bootstrap-table-multiple-selection-row.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/multiple-selection-row/bootstrap-table-multiple-selection-row.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/multiple-selection-row/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/multiple-sort/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/multiple-sort/bootstrap-table-multiple-sort.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/multiple-sort/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/natural-sorting/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/natural-sorting/bootstrap-table-natural-sorting.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/natural-sorting/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/page-jump-to/bootstrap-table-page-jump-to.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/page-jump-to/bootstrap-table-page-jump-to.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/page-jump/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/page-jump/bootstrap-table-pagejump.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/page-jump/bootstrap-table-pagejump.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/page-jump/demo.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/page-jump/index.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/page-jumpto/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/page-jumpto/bootstrap-table-jumpto.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/page-jumpto/bootstrap-table-jumpto.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/pipeline/LICENSE
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/pipeline/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/pipeline/bootstrap-table-pipeline.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/pipeline/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/print/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/print/bootstrap-table-print.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/reorder-columns/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/reorder-columns/bootstrap-table-reorder-columns.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/reorder-columns/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/reorder-rows/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/reorder-rows/bootstrap-table-reorder-rows.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/reorder-rows/bootstrap-table-reorder-rows.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/reorder-rows/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/resizable/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/resizable/bootstrap-table-resizable.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/resizable/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/select2-filter/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/select2-filter/bootstrap-table-select2-filter.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/select2-filter/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/sticky-header/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/sticky-header/bootstrap-table-sticky-header.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/sticky-header/bootstrap-table-sticky-header.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/sticky-header/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/toolbar/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/toolbar/bootstrap-table-toolbar.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/toolbar/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/tree-column/bootstrap-table-tree-column.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/tree-column/bootstrap-table-tree-column.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/tree-column/bootstrap-table-tree-column.less
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/tree-column/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/tree-column/icon.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/treegrid/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/treegrid/bootstrap-table-treegrid.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/treegrid/demo.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/extensions/treegrid/extension.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-af-ZA.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-ar-SA.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-ca-ES.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-cs-CZ.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-da-DK.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-de-DE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-el-GR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-en-US.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-en-US.js.template
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-es-AR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-es-CL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-es-CR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-es-ES.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-es-MX.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-es-NI.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-es-SP.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-et-EE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-eu-EU.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-fa-IR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-fi-FI.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-fr-BE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-fr-CH.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-fr-FR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-fr-LU.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-he-IL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-hr-HR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-hu-HU.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-id-ID.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-it-IT.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-ja-JP.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-ka-GE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-ko-KR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-ms-MY.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-nb-NO.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-nl-BE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-nl-NL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-pl-PL.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-pt-BR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-pt-PT.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-ro-RO.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-ru-RU.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-sk-SK.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-sv-SE.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-th-TH.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-tr-TR.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-uk-UA.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-ur-PK.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-uz-Latn-UZ.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-vi-VN.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-zh-CN.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/locale/bootstrap-table-zh-TW.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/themes/bootstrap/variables.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/themes/bulma/bootstrap-table-bulma.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/themes/bulma/bootstrap-table-bulma.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/themes/bulma/variables.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/themes/foundation/bootstrap-table-foundation.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/themes/foundation/bootstrap-table-foundation.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/themes/foundation/variables.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/themes/materialize/bootstrap-table-materialize.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/themes/materialize/bootstrap-table-materialize.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/themes/materialize/variables.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/themes/semantic/bootstrap-table-semantic.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/themes/semantic/bootstrap-table-semantic.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/themes/semantic/variables.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/themes/theme.scss
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/utils/index.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/virtual-scroll/index.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/vue/BootstrapTable.vue
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/src/vue/index.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/tools/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/tools/check-api.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-table-develop/tools/check-locale.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-toastr/toastr.js.map
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-toastr/toastr.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-toastr/toastr.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-treeview/bak/bootstrap-treeview.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-treeview/bak/bootstrap-treeview.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-treeview/bootstrap-treeview.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrap-treeview/bootstrap-treeview.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrapValidator/bootstrapValidator.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/bootstrapValidator/bootstrapValidator.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/.gitignore
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/LICENSE
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/README.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/bower.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/html2canvas.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/jquery.base64.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/jspdf/jspdf.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/jspdf/libs/base64.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/jspdf/libs/sprintf.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/libs/FileSaver/FileSaver.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/libs/FileSaver/LICENSE.md
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/libs/es6-promise/LICENSE
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/libs/es6-promise/es6-promise.auto.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/libs/html2canvas/LICENSE
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/libs/html2canvas/html2canvas.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/libs/js-xlsx/LICENSE
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/libs/js-xlsx/xlsx.core.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/libs/jsPDF-AutoTable/LICENSE.txt
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/libs/jsPDF-AutoTable/jspdf.plugin.autotable.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/libs/jsPDF/MIT-LICENSE.txt
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/libs/jsPDF/jspdf.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/libs/pdfmake/LICENSE
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/libs/pdfmake/mirza_fonts.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/libs/pdfmake/pdfmake.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/libs/pdfmake/vfs_fonts.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/package.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/tableExport.jquery.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/tableExport.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/tableExport.min.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/arabicExcel.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/arabicPdfmake.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/bootstrap.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/bootstrap2.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/bootstrap3.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/bootstrap3.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/bootstrap4.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/cssExcel.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/cssPdf.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/icons/csv.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/icons/json.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/icons/pdf.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/icons/png.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/icons/sql.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/icons/txt.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/icons/word.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/icons/xls.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/icons/xml.png
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/index.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/massExcel.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/multipleExcel.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/pdfmake.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/performance.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/selectedRows.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/sidebyside.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/singleExcel.html
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/test/tableExport.json
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/tools/minify2.py
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/tableExport.jquery.plugin-master/tools/minify3.py
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/timepicker/bootstrap-timepicker.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/timepicker/bootstrap-timepicker.js
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/timepicker/bootstrap-timepicker.min.css
create mode 100644 src/main/webapp/static/bootstrap-3.3.7/plugins/timepicker/bootstrap-timepicker.min.js
create mode 100644 src/main/webapp/static/css/comm.css
create mode 100644 src/main/webapp/static/css/layui.css
create mode 100644 src/main/webapp/static/css/spin.css
create mode 100644 src/main/webapp/static/css/style.css
create mode 100644 src/main/webapp/static/favicon.ico
create mode 100644 src/main/webapp/static/img/load.gif
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/.gitignore
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/LICENSE.txt
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/Makefile
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/README.md
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/assets/bg.png
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/assets/browsers.png
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/assets/crosshair.gif
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/assets/fd-slider/fd-slider-tooltip.css
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/assets/fd-slider/fd-slider.css
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/assets/fd-slider/fd-slider.js
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/assets/github.gif
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/assets/main.css
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/assets/prettify.css
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/assets/prettify.js
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/assets/preview.jpg
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/assets/ribbon.png
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/component.json
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/dist/spin.js
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/dist/spin.min.js
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/favicon.ico
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/index.html
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/index.html.bak
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/jquery.js
create mode 100644 src/main/webapp/static/jquery-loading-spin-js/spin.js
create mode 100644 src/main/webapp/static/js/beHospList/beHospList.js
create mode 100644 src/main/webapp/static/js/comm.js
create mode 100644 src/main/webapp/static/js/confirm/jquery-confirm.min.css
create mode 100644 src/main/webapp/static/js/confirm/jquery-confirm.min.js
create mode 100644 src/main/webapp/static/js/echarts.js
create mode 100644 src/main/webapp/static/js/echarts.min.js
create mode 100644 src/main/webapp/static/js/flowInfo/flowInfoList.js
create mode 100644 src/main/webapp/static/js/holidaySet/holidaySetList.js
create mode 100644 src/main/webapp/static/js/hospitalCommom/hospitalCommom.js
create mode 100644 src/main/webapp/static/js/hospitalCommom/pinying.js
create mode 100644 src/main/webapp/static/js/hospitalLoadPdf/loadPdf.js
create mode 100644 src/main/webapp/static/js/jquery-1.4.4.min.js
create mode 100644 src/main/webapp/static/js/jquery-3.2.1.js
create mode 100644 src/main/webapp/static/js/jquery-3.2.1.min.js
create mode 100644 src/main/webapp/static/js/jquery-3.3.1.js
create mode 100644 src/main/webapp/static/js/jquery-ui.min.js
create mode 100644 src/main/webapp/static/js/jquery.media.js
create mode 100644 src/main/webapp/static/js/lastVerifyList/lastVerifyList.js
create mode 100644 src/main/webapp/static/js/medicalRecallList/medicalRecallList.js
create mode 100644 src/main/webapp/static/js/menu.js
create mode 100644 src/main/webapp/static/js/modernizr.js
create mode 100644 src/main/webapp/static/js/pyAndWb.js
create mode 100644 src/main/webapp/static/js/showRecord/showRecord.js
create mode 100644 src/main/webapp/static/js/showRecord/showRecordIframe.js
create mode 100644 src/main/webapp/static/js/showRecord/showRecordIframeCommom.js
create mode 100644 src/main/webapp/static/js/spin.js
create mode 100644 src/main/webapp/static/js/spin.min.js
create mode 100644 src/main/webapp/static/js/statistics/finalStatistics.js
create mode 100644 src/main/webapp/static/js/statistics/finalStatisticsDetail.js
create mode 100644 src/main/webapp/static/js/statistics/firstStatistics.js
create mode 100644 src/main/webapp/static/js/statistics/getDeptCommom.js
create mode 100644 src/main/webapp/static/js/statistics/printCount.js
create mode 100644 src/main/webapp/static/js/statistics/printInfo.js
create mode 100644 src/main/webapp/static/js/statistics/scanCount.js
create mode 100644 src/main/webapp/static/js/statistics/scanInfo.js
create mode 100644 src/main/webapp/static/js/statistics/statisticsCommom.js
create mode 100644 src/main/webapp/static/js/statistics/statisticsDetail.js
create mode 100644 src/main/webapp/static/js/tree-select.js
create mode 100644 src/main/webapp/static/js/vCount/doctorFileList.js
create mode 100644 src/main/webapp/static/js/vCount/doctorFileListIframe.js
create mode 100644 src/main/webapp/static/pdfjs/LICENSE
create mode 100644 src/main/webapp/static/pdfjs/build/pdf.js
create mode 100644 src/main/webapp/static/pdfjs/build/pdf.worker.js
create mode 100644 src/main/webapp/static/pdfjs/web/bootstrap.js
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/78-EUC-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/78-EUC-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/78-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/78-RKSJ-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/78-RKSJ-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/78-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Add-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Add-RKSJ-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Add-RKSJ-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Add-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-GB1-0.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-GB1-1.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-GB1-2.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-GB1-3.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-GB1-4.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-GB1-5.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/B5-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/B5-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/B5pc-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/B5pc-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/CNS-EUC-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/CNS-EUC-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/CNS1-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/CNS1-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/CNS2-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/CNS2-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/ETHK-B5-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/ETHK-B5-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/ETen-B5-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/ETen-B5-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/ETenms-B5-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/ETenms-B5-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/EUC-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/EUC-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Ext-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Ext-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/GB-EUC-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/GB-EUC-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/GB-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/GB-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/GBK-EUC-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/GBK-EUC-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/GBK2K-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/GBK2K-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/GBKp-EUC-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/GBKp-EUC-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/GBT-EUC-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/GBT-EUC-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/GBT-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/GBT-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/GBpc-EUC-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/GBpc-EUC-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/HKdla-B5-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/HKdla-B5-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/HKdlb-B5-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/HKdlb-B5-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/HKgccs-B5-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/HKgccs-B5-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/HKm314-B5-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/HKm314-B5-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/HKm471-B5-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/HKm471-B5-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/HKscs-B5-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/HKscs-B5-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Hankaku.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Hiragana.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/KSC-EUC-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/KSC-EUC-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/KSC-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/KSC-Johab-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/KSC-Johab-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/KSC-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/KSCms-UHC-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/KSCms-UHC-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Katakana.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/LICENSE
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/NWP-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/NWP-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/RKSJ-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/RKSJ-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/Roman.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/V.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/cmaps/WP-Symbol.bcmap
create mode 100644 src/main/webapp/static/pdfjs/web/compatibility.js
create mode 100644 src/main/webapp/static/pdfjs/web/compressed.tracemonkey-pldi-09.pdf
create mode 100644 src/main/webapp/static/pdfjs/web/debugger.js
create mode 100644 src/main/webapp/static/pdfjs/web/images/annotation-check.svg
create mode 100644 src/main/webapp/static/pdfjs/web/images/annotation-comment.svg
create mode 100644 src/main/webapp/static/pdfjs/web/images/annotation-help.svg
create mode 100644 src/main/webapp/static/pdfjs/web/images/annotation-insert.svg
create mode 100644 src/main/webapp/static/pdfjs/web/images/annotation-key.svg
create mode 100644 src/main/webapp/static/pdfjs/web/images/annotation-newparagraph.svg
create mode 100644 src/main/webapp/static/pdfjs/web/images/annotation-noicon.svg
create mode 100644 src/main/webapp/static/pdfjs/web/images/annotation-note.svg
create mode 100644 src/main/webapp/static/pdfjs/web/images/annotation-paragraph.svg
create mode 100644 src/main/webapp/static/pdfjs/web/images/findbarButton-next-rtl.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/findbarButton-next-rtl@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/findbarButton-next.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/findbarButton-next@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/findbarButton-previous-rtl.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/findbarButton-previous-rtl@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/findbarButton-previous.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/findbarButton-previous@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/grab.cur
create mode 100644 src/main/webapp/static/pdfjs/web/images/grabbing.cur
create mode 100644 src/main/webapp/static/pdfjs/web/images/loading-icon.gif
create mode 100644 src/main/webapp/static/pdfjs/web/images/loading-small.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/loading-small@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/secondaryToolbarButton-documentProperties.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/secondaryToolbarButton-documentProperties@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/secondaryToolbarButton-firstPage.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/secondaryToolbarButton-firstPage@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/secondaryToolbarButton-handTool.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/secondaryToolbarButton-handTool@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/secondaryToolbarButton-lastPage.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/secondaryToolbarButton-lastPage@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/secondaryToolbarButton-rotateCcw.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/secondaryToolbarButton-rotateCcw@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/secondaryToolbarButton-rotateCw.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/secondaryToolbarButton-rotateCw@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/shadow.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/texture.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-bookmark.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-bookmark@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-download.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-download@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-menuArrows.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-menuArrows@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-openFile.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-openFile@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-pageDown-rtl.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-pageDown-rtl@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-pageDown.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-pageDown@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-pageUp-rtl.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-pageUp-rtl@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-pageUp.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-pageUp@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-presentationMode.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-presentationMode@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-print.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-print@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-search.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-search@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-secondaryToolbarToggle@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-sidebarToggle-rtl.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-sidebarToggle-rtl@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-sidebarToggle.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-sidebarToggle@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-viewAttachments.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-viewAttachments@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-viewOutline-rtl.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-viewOutline-rtl@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-viewOutline.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-viewOutline@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-viewThumbnail.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-viewThumbnail@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-zoomIn.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-zoomIn@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-zoomOut.png
create mode 100644 src/main/webapp/static/pdfjs/web/images/toolbarButton-zoomOut@2x.png
create mode 100644 src/main/webapp/static/pdfjs/web/jquery-3.3.1.js
create mode 100644 src/main/webapp/static/pdfjs/web/l10n.js
create mode 100644 src/main/webapp/static/pdfjs/web/locale/ach/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/af/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/ak/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/an/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/ar/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/as/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/ast/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/az/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/be/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/bg/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/bn-BD/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/bn-IN/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/br/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/bs/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/ca/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/cs/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/csb/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/cy/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/da/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/de/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/el/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/en-GB/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/en-US/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/en-ZA/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/eo/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/es-AR/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/es-CL/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/es-ES/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/es-MX/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/et/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/eu/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/fa/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/ff/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/fi/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/fr/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/fy-NL/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/ga-IE/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/gd/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/gl/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/gu-IN/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/he/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/hi-IN/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/hr/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/hu/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/hy-AM/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/id/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/is/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/it/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/ja/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/ka/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/kk/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/km/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/kn/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/ko/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/ku/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/lg/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/lij/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/locale.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/lt/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/lv/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/mai/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/mk/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/ml/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/mn/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/mr/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/ms/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/my/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/nb-NO/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/nl/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/nn-NO/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/nso/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/oc/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/or/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/pa-IN/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/pl/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/pt-BR/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/pt-PT/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/rm/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/ro/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/ru/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/rw/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/sah/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/si/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/sk/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/sl/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/son/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/sq/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/sr/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/sv-SE/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/sw/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/ta-LK/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/ta/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/te/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/th/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/tl/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/tn/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/tr/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/uk/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/ur/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/vi/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/wo/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/xh/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/zh-CN/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/zh-TW/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/locale/zu/viewer.properties
create mode 100644 src/main/webapp/static/pdfjs/web/viewer.css
create mode 100644 src/main/webapp/static/pdfjs/web/viewer.html
create mode 100644 src/main/webapp/static/pdfjs/web/viewer.js
create mode 100644 src/main/webapp/static/zTree_v3-master/.gitattributes
create mode 100644 src/main/webapp/static/zTree_v3-master/.gitignore
create mode 100644 src/main/webapp/static/zTree_v3-master/README.md
create mode 100644 src/main/webapp/static/zTree_v3-master/css/awesomeStyle/awesome.css
create mode 100644 src/main/webapp/static/zTree_v3-master/css/awesomeStyle/awesome.less
create mode 100644 src/main/webapp/static/zTree_v3-master/css/awesomeStyle/fa.less
create mode 100644 src/main/webapp/static/zTree_v3-master/css/awesomeStyle/img/loading.gif
create mode 100644 src/main/webapp/static/zTree_v3-master/css/demo.css
create mode 100644 src/main/webapp/static/zTree_v3-master/css/metroStyle/img/line_conn.png
create mode 100644 src/main/webapp/static/zTree_v3-master/css/metroStyle/img/loading.gif
create mode 100644 src/main/webapp/static/zTree_v3-master/css/metroStyle/img/metro.gif
create mode 100644 src/main/webapp/static/zTree_v3-master/css/metroStyle/img/metro.png
create mode 100644 src/main/webapp/static/zTree_v3-master/css/metroStyle/metroStyle.css
create mode 100644 src/main/webapp/static/zTree_v3-master/css/zTreeStyle/img/diy/1_close.png
create mode 100644 src/main/webapp/static/zTree_v3-master/css/zTreeStyle/img/diy/1_open.png
create mode 100644 src/main/webapp/static/zTree_v3-master/css/zTreeStyle/img/diy/2.png
create mode 100644 src/main/webapp/static/zTree_v3-master/css/zTreeStyle/img/diy/3.png
create mode 100644 src/main/webapp/static/zTree_v3-master/css/zTreeStyle/img/diy/4.png
create mode 100644 src/main/webapp/static/zTree_v3-master/css/zTreeStyle/img/diy/5.png
create mode 100644 src/main/webapp/static/zTree_v3-master/css/zTreeStyle/img/diy/6.png
create mode 100644 src/main/webapp/static/zTree_v3-master/css/zTreeStyle/img/diy/7.png
create mode 100644 src/main/webapp/static/zTree_v3-master/css/zTreeStyle/img/diy/8.png
create mode 100644 src/main/webapp/static/zTree_v3-master/css/zTreeStyle/img/diy/9.png
create mode 100644 src/main/webapp/static/zTree_v3-master/css/zTreeStyle/img/line_conn.gif
create mode 100644 src/main/webapp/static/zTree_v3-master/css/zTreeStyle/img/loading.gif
create mode 100644 src/main/webapp/static/zTree_v3-master/css/zTreeStyle/img/zTreeStandard.gif
create mode 100644 src/main/webapp/static/zTree_v3-master/css/zTreeStyle/img/zTreeStandard.png
create mode 100644 src/main/webapp/static/zTree_v3-master/css/zTreeStyle/zTreeStyle.css
create mode 100644 src/main/webapp/static/zTree_v3-master/css/zTreeStyle/zTreeStylev3.5.28.css
create mode 100644 src/main/webapp/static/zTree_v3-master/js/fuzzysearch.js
create mode 100644 src/main/webapp/static/zTree_v3-master/js/jquery-1.4.4.min.js
create mode 100644 src/main/webapp/static/zTree_v3-master/js/jquery.ztree.all.js
create mode 100644 src/main/webapp/static/zTree_v3-master/js/jquery.ztree.all.min.js
create mode 100644 src/main/webapp/static/zTree_v3-master/js/jquery.ztree.allv3-3.5.28.js
create mode 100644 src/main/webapp/static/zTree_v3-master/js/jquery.ztree.allv3-3.5.28.min.js
create mode 100644 src/main/webapp/static/zTree_v3-master/js/jquery.ztree.core.js
create mode 100644 src/main/webapp/static/zTree_v3-master/js/jquery.ztree.core.min.js
create mode 100644 src/main/webapp/static/zTree_v3-master/js/jquery.ztree.excheck.js
create mode 100644 src/main/webapp/static/zTree_v3-master/js/jquery.ztree.excheck.min.js
create mode 100644 src/main/webapp/static/zTree_v3-master/js/jquery.ztree.exedit.js
create mode 100644 src/main/webapp/static/zTree_v3-master/js/jquery.ztree.exedit.min.js
create mode 100644 src/main/webapp/static/zTree_v3-master/js/jquery.ztree.exhide.js
create mode 100644 src/main/webapp/static/zTree_v3-master/js/jquery.ztree.exhide.min.js
create mode 100644 src/main/webapp/static/zTree_v3-master/js/jquery.ztree.exhidev3-3.5.28.js
create mode 100644 src/main/webapp/static/zTree_v3-master/log v3.x.txt
create mode 100644 src/main/webapp/static/zTree_v3-master/package.json
create mode 100644 src/main/webapp/static/zTree_v3-master/zTree.v3.jquery.json
create mode 100644 src/main/webapp/病案归档系统版本说明.txt
create mode 100644 src/test/java/com/emr/MapperTest.java
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..d2c3354
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+/target/
+/.idea/
+/out/
+emr_medical_record.iml
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..fe2f0b9
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,545 @@
+
+
+
+ 4.0.0
+
+ com.emr
+ emr_medical_record
+ 1.0-SNAPSHOT
+ war
+
+ emr_medical_record Maven Webapp
+ http://www.example.com
+
+
+
+
+ true
+ UTF-8
+
+ true
+
+ 1.0.0
+
+
+ 1.1.5
+ 4.12
+ 1.8
+ 1.9.5
+
+ 1.2.2
+ 2.2.1
+ 7.6.11.v20130520
+ 2.4
+ 2.1
+ 1.2
+ 5.0.1.Final
+ 9.2-1004-jdbc4
+ 5.17.0
+ 2.3.6
+ 2.2.1
+ 1.1.1
+ 3.5.0
+
+ 5.0.2.RELEASE
+ 3.2.8
+ 1.2.2
+ 1.2.15
+ 5.1.32
+ 1.6.4
+ 2.4
+ 2.9.4
+ 1.0.9
+ 4.3.5
+ 2.5
+ 2.0
+ 2.5
+ 3.3.2
+ 1.3.2
+ 3.3
+ 3.4.3
+ 0.9.1
+ 1.3.1
+ 2.7.2
+ 4.10.3
+ 1.8.13
+ 1.8.13
+ 2.1.7
+ 3.1.8
+ 3.9
+ 2.1.7
+
+
+
+
+
+
+ org.apache.commons
+ commons-lang3
+ ${commons-lang3.version}
+
+
+ org.apache.commons
+ commons-io
+ ${commons-io.version}
+
+
+ commons-net
+ commons-net
+ ${commons-net.version}
+
+
+
+ net.sf.json-lib
+ json-lib
+ ${json-lib.version}
+ jdk15
+
+
+
+ com.fasterxml.jackson.core
+ jackson-databind
+ ${jackson.version}
+
+
+
+ org.apache.httpcomponents
+ httpclient
+ ${httpclient.version}
+
+
+
+ junit
+ junit
+ ${junit.version}
+ test
+
+
+
+ org.slf4j
+ slf4j-log4j12
+ ${slf4j.version}
+
+
+
+ org.mybatis
+ mybatis
+ ${mybatis.version}
+
+
+ org.mybatis
+ mybatis-spring
+ ${mybatis.spring.version}
+
+
+ com.github.miemiedev
+ mybatis-paginator
+ ${mybatis.paginator.version}
+
+
+ com.github.pagehelper
+ pagehelper
+ ${pagehelper.version}
+
+
+
+
+ com.alibaba
+ druid
+ ${druid.version}
+
+
+
+
+ org.springframework
+ spring-context
+ ${spring.version}
+
+
+ org.springframework
+ spring-context-support
+ ${spring.version}
+
+
+ org.springframework
+ spring-beans
+ ${spring.version}
+
+
+ org.springframework
+ spring-webmvc
+ ${spring.version}
+
+
+ org.springframework
+ spring-web
+ ${spring.version}
+
+
+ org.springframework
+ spring-jdbc
+ ${spring.version}
+
+
+ org.springframework
+ spring-aspects
+ ${spring.version}
+
+
+ org.springframework
+ spring-tx
+ ${spring.version}
+
+
+ org.springframework
+ spring-test
+ ${spring.version}
+
+
+ org.aspectj
+ aspectjweaver
+ ${aspectj.version}
+
+
+ org.aspectj
+ aspectjrt
+ ${aspectj.version}
+
+
+
+
+ commons-codec
+ commons-codec
+ 1.9
+
+
+
+
+ org.bouncycastle
+ bcprov-jdk16
+ 1.46
+
+
+
+
+ javax.mail
+ mail
+ 1.4.5
+
+
+ com.sun.mail
+ javax.mail
+ 1.5.4
+
+
+
+
+ commons-dbutils
+ commons-dbutils
+ 1.4
+
+
+
+
+ com.github.pagehelper
+ pagehelper
+ 5.0.0
+
+
+ jstl
+ jstl
+ ${jstl.version}
+
+
+ javax.servlet
+ servlet-api
+ ${servlet-api.version}
+
+
+ javax.servlet
+ jsp-api
+ ${jsp-api.version}
+
+
+
+ commons-fileupload
+ commons-fileupload
+ ${commons-fileupload.version}
+
+
+
+ org.apache.shiro
+ shiro-spring
+ ${shiro.version}
+
+
+ org.apache.shiro
+ shiro-ehcache
+ ${shiro.version}
+
+
+ org.apache.shiro
+ shiro-core
+ ${shiro.version}
+
+
+ org.apache.shiro
+ shiro-web
+ ${shiro.version}
+
+
+ junit
+ junit
+ 4.12
+ test
+
+
+
+ org.postgresql
+ postgresql
+ ${postgresql.version}
+
+
+ taglibs
+ standard
+ 1.1.2
+
+
+
+ net.sf.json-lib
+ json-lib
+ ${json-lib.version}
+ jdk15
+
+
+
+ com.fasterxml.jackson.core
+ jackson-databind
+ ${jackson.version}
+
+
+
+
+ org.mockito
+ mockito-core
+ ${mockito.version}
+ test
+
+
+
+
+
+ org.jdom
+ jdom
+ 1.1
+
+
+
+
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-resources-plugin
+ 3.1.0
+
+
+
+
+
+
+
+
+ org.mockito
+ mockito-core
+ ${mockito.version}
+ test
+
+
+
+
+ org.apache.httpcomponents
+ httpmime
+ 4.5.5
+
+
+
+
+ org.jdom
+ jdom
+ 1.1
+
+
+ org.apache.maven.plugins
+ maven-resources-plugin
+ 3.1.0
+
+
+
+ org.apache.poi
+ poi
+ ${poi.version}
+
+
+ org.apache.poi
+ poi-ooxml
+ ${poi.version}
+
+
+
+ org.eclipse.birt.runtime.3_7_1
+ com.lowagie.text
+ ${image2pdf.version}
+
+
+ com.itextpdf
+ itextpdf
+ 5.5.7
+
+
+
+ com.alibaba
+ fastjson
+ 1.2.50
+
+
+ org.apache.cxf
+ cxf-rt-transports-http
+ ${cxf.version}
+
+
+ org.apache.cxf
+ cxf-rt-frontend-jaxws
+ ${cxf.version}
+
+
+ org.apache.pdfbox
+ pdfbox
+ 2.0.12
+
+
+
+
+
+
+
+
+
+ org.apache.axis
+ axis
+ 1.4
+
+
+ commons-discovery
+ commons-discovery
+ 0.2
+
+
+ commons-logging
+ commons-logging
+
+
+
+
+ org.apache.axis
+ axis-jaxrpc
+ 1.4
+
+
+ com.lowagie
+ itext
+ ${itext.version}
+
+
+
+ org.projectlombok
+ lombok
+ 1.18.8
+ provided
+
+
+ org.junit.jupiter
+ junit-jupiter-api
+ RELEASE
+ compile
+
+
+
+
+ emr_medical_record
+
+
+
+ org.apache.maven.plugins
+ maven-resources-plugin
+ 2.7
+
+ UTF-8
+
+
+
+ org.apache.maven.plugins
+ maven-surefire-plugin
+
+ true
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+ 3.1
+
+
+ 1.8
+ 1.8
+ UTF-8
+ true
+ true
+ true
+
+
+ 128m
+ 512m
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/main/java/com/emr/annotation/DataSource.java b/src/main/java/com/emr/annotation/DataSource.java
new file mode 100644
index 0000000..19fd944
--- /dev/null
+++ b/src/main/java/com/emr/annotation/DataSource.java
@@ -0,0 +1,12 @@
+package com.emr.annotation;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Target;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+
+@Retention(RetentionPolicy.RUNTIME)
+@Target(ElementType.METHOD)
+public @interface DataSource {
+ String dataSource() default "";
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/annotation/DataSourceAspect.java b/src/main/java/com/emr/annotation/DataSourceAspect.java
new file mode 100644
index 0000000..3402285
--- /dev/null
+++ b/src/main/java/com/emr/annotation/DataSourceAspect.java
@@ -0,0 +1,36 @@
+package com.emr.annotation;
+
+import org.aspectj.lang.JoinPoint;
+import org.aspectj.lang.Signature;
+import org.aspectj.lang.annotation.Aspect;
+import org.aspectj.lang.annotation.Before;
+import org.aspectj.lang.annotation.Pointcut;
+import org.aspectj.lang.reflect.MethodSignature;
+import org.springframework.stereotype.Component;
+
+import java.lang.reflect.Method;
+
+@Aspect
+@Component
+public class DataSourceAspect {
+ //配置接入点
+ @Pointcut("@annotation(com.emr.annotation.DataSource)")
+ private void controllerAspect(){}//定义一个切入点
+ @Before("controllerAspect()")
+ public void dataSwitch(JoinPoint joinPoint){
+ Signature signature = joinPoint.getSignature();
+ MethodSignature methodSignature =(MethodSignature) signature;
+ Method method = methodSignature.getMethod();
+ DataSource data = null;
+ String dataSource = "";
+ if(method != null){
+ data = method.getAnnotation(DataSource.class);
+ if(data != null){
+ dataSource = data.dataSource();
+ if(dataSource != null){
+ DynamicDataSource.setDataSourceKey(dataSource);
+ }
+ }
+ }
+ }
+}
diff --git a/src/main/java/com/emr/annotation/DynamicDataSource.java b/src/main/java/com/emr/annotation/DynamicDataSource.java
new file mode 100644
index 0000000..abbcb06
--- /dev/null
+++ b/src/main/java/com/emr/annotation/DynamicDataSource.java
@@ -0,0 +1,14 @@
+package com.emr.annotation;
+
+import org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource;
+
+public class DynamicDataSource extends AbstractRoutingDataSource {
+ private static final ThreadLocal dataSourceKey = new InheritableThreadLocal();
+ public static void setDataSourceKey(String dataSource){
+ dataSourceKey.set(dataSource);
+ }
+ @Override
+ protected Object determineCurrentLookupKey() {
+ return dataSourceKey.get();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/controller/ArchiveFlowInfoController.java b/src/main/java/com/emr/controller/ArchiveFlowInfoController.java
new file mode 100644
index 0000000..8461966
--- /dev/null
+++ b/src/main/java/com/emr/controller/ArchiveFlowInfoController.java
@@ -0,0 +1,103 @@
+package com.emr.controller;
+
+import com.emr.entity.Archive_Master_Vo;
+import com.emr.entity.OffsetLimitPage;
+import com.emr.service.ipml.ArchiveFlowInfoService;
+import com.emr.util.ExportExcelUtil1;
+import com.emr.vo.ArchiveFlowInfoVo;
+import com.github.pagehelper.Page;
+import com.github.pagehelper.PageHelper;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.ResponseBody;
+
+import javax.servlet.http.HttpServletResponse;
+import java.text.SimpleDateFormat;
+import java.util.Date;
+import java.util.List;
+
+/**
+ * @ProjectName:
+ * @Description:
+ * @Param 传输参数
+ * @Return
+ * @Author: 曾文和
+ * @CreateDate: 2020/5/25 16:18
+ * @UpdateUser: 曾文和
+ * @UpdateDate: 2020/5/25 16:18
+ * @UpdateRemark: 更新说明
+ * @Version: 1.0
+ */
+@Controller
+@RequestMapping("flowInfo/")
+public class ArchiveFlowInfoController {
+ @Autowired
+ private ArchiveFlowInfoService flowInfoService;
+
+ /**
+ * 跳转到流程明细页面
+ * @return
+ */
+ @RequestMapping("list")
+ public String toList(){
+ return "flowInfo/flowInfoList";
+ }
+
+ /**
+ * 获取流程明细列表
+ * @param offset
+ * @param limit
+ * @param flowInfoVo
+ * @param isSearch
+ * @return
+ * @throws Exception
+ */
+ @RequestMapping(value = "selectFlowInfoList")
+ @ResponseBody
+ public OffsetLimitPage selectFlowInfoList(Integer offset, Integer limit, ArchiveFlowInfoVo flowInfoVo,Integer isSearch) throws Exception{
+ //判断是否是初始化查询,是初始化查询把开始结束时间置空
+ if(isSearch == 0){
+ flowInfoVo.setDisStartDate(null);
+ flowInfoVo.setDisEndDate(null);
+ flowInfoVo.setStartDate(null);
+ flowInfoVo.setEndDate(null);
+ }
+ PageHelper.offsetPage(offset,limit);
+ List list = flowInfoService.selectFlowInfoList(flowInfoVo,null);
+ return new OffsetLimitPage((Page) list);
+ }
+
+ /**
+ * 导出流程明细
+ * @param response
+ * @param flowInfoVo
+ * @param sql
+ * @param isSearch
+ * @throws Exception
+ */
+ @RequestMapping("exportExcel")
+ @ResponseBody
+ public void exportExcel(HttpServletResponse response, ArchiveFlowInfoVo flowInfoVo,String sql, Integer isSearch) throws Exception{
+ //全部明细
+ String tableThNames = "";
+ String fieldCns = "";
+ //流程明细
+ tableThNames = "审核工号,审核姓名,当前操作,审核日期,下个审核节点,患者姓名,住院号,出院科室,出院日期,批注内容,审核用时";
+ fieldCns = "userName,checkName,sumbitName,createTimeCn,targetStep,name,inpNo,deptName,dischargeDateTime,remark,useTime";
+ //判断是否是初始化查询,是初始化查询把开始结束时间置空
+ if(isSearch == 0){
+ flowInfoVo.setDisStartDate(null);
+ flowInfoVo.setDisEndDate(null);
+ flowInfoVo.setStartDate(null);
+ flowInfoVo.setEndDate(null);
+ }
+ List list = flowInfoService.selectFlowInfoList(flowInfoVo,sql);
+ //文件名
+ String fileName = "审核流程明细(" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()) + ").xls";
+ //ExportExcelUtil
+ ExportExcelUtil1 exportExcelUtil = new ExportExcelUtil1();
+ //导出excel的操作
+ exportExcelUtil.expordExcel(tableThNames,fieldCns,list,fileName,response);
+ }
+}
diff --git a/src/main/java/com/emr/controller/ContantController.java b/src/main/java/com/emr/controller/ContantController.java
new file mode 100644
index 0000000..17c9217
--- /dev/null
+++ b/src/main/java/com/emr/controller/ContantController.java
@@ -0,0 +1,33 @@
+package com.emr.controller;
+
+import com.alibaba.fastjson.JSON;
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.ResponseBody;
+
+import javax.servlet.http.HttpServletRequest;
+import java.util.UUID;
+
+/**
+ * @ProjectName:
+ * @Description:
+ * @Param 传输参数
+ * @Return
+ * @Author: 曾文和
+ * @CreateDate: 2019/9/17 14:59
+ * @UpdateUser: 曾文和
+ * @UpdateDate: 2019/9/17 14:59
+ * @UpdateRemark: 更新说明
+ * @Version: 1.0
+ */
+@Controller
+@RequestMapping("contant/")
+public class ContantController {
+ @RequestMapping("getUuid")
+ @ResponseBody
+ public String getUuid(HttpServletRequest request){
+ String formToken = UUID.randomUUID().toString();
+ request.getSession().setAttribute("formToken",formToken);
+ return JSON.toJSONString(formToken);
+ }
+}
diff --git a/src/main/java/com/emr/controller/DictionaryController.java b/src/main/java/com/emr/controller/DictionaryController.java
new file mode 100644
index 0000000..ee02641
--- /dev/null
+++ b/src/main/java/com/emr/controller/DictionaryController.java
@@ -0,0 +1,125 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/8/9 16:12
+ * Description:
+ */
+package com.emr.controller;
+
+import com.emr.entity.Emr_Dictionary;
+import com.emr.service.Emr_DictionaryService;
+import org.apache.shiro.SecurityUtils;
+import org.apache.shiro.session.Session;
+import org.apache.shiro.subject.Subject;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Controller;
+import org.springframework.ui.Model;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.ResponseBody;
+
+import java.text.SimpleDateFormat;
+import java.util.Date;
+import java.util.List;
+
+@Controller
+@RequestMapping("/dictionary")
+public class DictionaryController {
+ @Autowired
+ private Emr_DictionaryService emrDictionaryService;
+
+ @RequestMapping(value = "/dictionarys")
+ public String inHospitals(Model model) {
+ return "dictionaryDir/dictionary";
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/dicList")
+ public List dicList(Emr_Dictionary emrDictionary) {
+ return emrDictionaryService.dicByClo(emrDictionary);
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/delById")
+ public int delById(Integer id) {
+ int bol = 0;
+ if (id != null) {
+ //删除
+ bol = emrDictionaryService.delById(id);
+ }
+ return bol;
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/saveInfo")
+ public String saveInfo(Emr_Dictionary emrDictionary) {
+ String result="";
+ int bol=0;
+ Emr_Dictionary dic2 = new Emr_Dictionary();
+ // 从session获取用户名
+ Subject currentUser = SecurityUtils.getSubject();
+ Session session = currentUser.getSession();
+ String username = (String) session.getAttribute("userSession");//获取前面登录的用户名
+
+ SimpleDateFormat format1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+ String nowTime = format1.format(new Date());
+
+ if(emrDictionary.getId()!=null){
+ //判断类别代码或代码是否已经存在
+ //存在修改
+ emrDictionary.setUpdater(username);
+ emrDictionary.setUpdateTime(nowTime);
+ try{
+ bol=emrDictionaryService.updateCloById(emrDictionary);
+ }catch (Exception e){
+ e.printStackTrace();
+ }
+ if (bol == 1) {
+ result = "修改成功!";
+ } else {
+ result = "修改失败!";
+ }
+ }else{
+ emrDictionary.setCreater(username);
+ emrDictionary.setCreateTime(nowTime);
+ //判断类别代码或代码是否已经存在
+ if(emrDictionary.getCode()!=null && emrDictionary.getCode()!=""){
+ dic2.setCode(emrDictionary.getCode());
+ dic2.setParentId(emrDictionary.getParentId());
+ //根据代码查询该父类下是否存在是否已经存在
+ List list = emrDictionaryService.dicByClo(dic2);
+ //添加叶子节点
+ if(list.size()<=0){
+ //添加叶子
+ bol = emrDictionaryService.insertSel(emrDictionary);
+ if(bol==1){
+ result = "添加成功!";
+ }else{
+ result = "添加失败!";
+ }
+ }else{
+ result="代码已存在!";
+ }
+ }else{
+ dic2.setTypecode(emrDictionary.getTypecode());
+ //根据代码查询是否已经存在
+ List list = emrDictionaryService.dicByClo(dic2);
+ //添加叶子节点
+ if (list.size() <= 0) {
+ //emrDictionary.setEffective(1);
+ //添加类别
+ bol = emrDictionaryService.insertSel(emrDictionary);
+ if (bol == 1) {
+ result = "添加成功!";
+ } else {
+ result = "添加失败!";
+ }
+ } else {
+ result = "代码已存在!";
+ }
+ }
+ }
+ return result;
+ }
+}
+
+
diff --git a/src/main/java/com/emr/controller/FontController.java b/src/main/java/com/emr/controller/FontController.java
new file mode 100644
index 0000000..be40196
--- /dev/null
+++ b/src/main/java/com/emr/controller/FontController.java
@@ -0,0 +1,296 @@
+package com.emr.controller;
+
+import com.alibaba.fastjson.JSON;
+import com.emr.dao.Emr_DictionaryMapper;
+import com.emr.entity.*;
+import com.emr.service.Archive_DetailService;
+import com.emr.service.Archive_MasterService;
+import com.emr.service.ipml.TPrintinfoService;
+import com.emr.service.ipml.ZdAssortService;
+import com.emr.util.Msg;
+import net.sf.json.JSONObject;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.http.client.methods.CloseableHttpResponse;
+import org.apache.http.client.methods.HttpGet;
+import org.apache.http.impl.client.HttpClients;
+import org.apache.http.util.EntityUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Controller;
+import org.springframework.ui.Model;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.ResponseBody;
+import javax.servlet.http.HttpServletResponse;
+import java.text.SimpleDateFormat;
+import java.util.*;
+
+/**
+ * @author zwh
+ * */
+@Controller
+@RequestMapping("font/")
+public class FontController {
+ @Value("${pdfWater}")
+ private String pdfWater;
+ @Value("${allAddortIds}")
+ private String allAddortIds;
+ @Value("${POWER_URLHEAD}")
+ private String powerUrlHead;
+ @Autowired
+ private TPrintinfoService printinfoService;
+ @Autowired
+ private Archive_DetailService archiveDetailService;
+ @Autowired
+ private Archive_MasterService archiveMasterService;
+ @Autowired
+ private Emr_DictionaryMapper dictionaryMapper;
+ @Autowired
+ private ZdAssortService assortService;
+ @RequestMapping("selectIsPrintByPatienId")
+ @ResponseBody
+ public Msg selectIsPrintByPatienId(String patientId){
+ if(StringUtils.isBlank(patientId)){
+ return Msg.fail("参数patientId不能为空");
+ }
+ return printinfoService.selectIsPrintByPatienId(patientId);
+ }
+
+
+
+ /***************************提供第三方按多个分段id和记账号查询病历pdf***********************************/
+ /**
+ * 提供第三方按多个分段id和记账号查询病历pdf
+ * */
+ @RequestMapping("showRecordByPatientId")
+ public String showRecordByPatientId(String userName, String assortIds, String patientId, Model model) throws Exception{
+ //判断各参数
+ if(StringUtils.isBlank(userName)){
+ return retrunErrorPage(model,"工号不能为空!");
+ }
+ if(StringUtils.isBlank(assortIds)){
+ return retrunErrorPage(model,"病案分类Id不能为空!");
+ }
+ if(StringUtils.isBlank(patientId)){
+ return retrunErrorPage(model,"记账号不能为空!");
+ }
+ List list = new ArrayList<>();
+ //判断工号是否存在
+ String checkUserName = checkUserName(userName);
+ if(StringUtils.isNotBlank(checkUserName)){
+ return retrunErrorPage(model,checkUserName);
+ }
+ //判断分类id是否存在,协商assortIds = "00000000"为查询全部
+ if(!allAddortIds.equals(assortIds)) {
+ String checkAssortIds = checkAssortIds(assortIds);
+ if (StringUtils.isNotBlank(checkAssortIds)) {
+ return retrunErrorPage(model, checkAssortIds);
+ }
+ }
+ //判断记账号是否存在
+ Archive_Master master = new Archive_Master();
+ master.setPatientId(patientId);
+ list = archiveMasterService.selectByObject(master);
+ if(null == list || list.isEmpty()){
+ return retrunErrorPage(model,"记账号不存在!");
+ }
+ model.addAttribute("patientId",list.get(0).getId());
+ model.addAttribute("assortIds",assortIds);
+ return "font/showRecord";
+ }
+
+ /**
+ * 判断工号是否存在
+ */
+ private String checkUserName(String userName) throws Exception{
+ String resultString = "";
+ String url = powerUrlHead + "/font/checkUserName?userName=" + userName;
+ // 执行请求
+ CloseableHttpResponse response = HttpClients.createDefault().execute(new HttpGet(url));
+ // 判断返回状态是否为200
+ int temp = 200;
+ if (response.getStatusLine().getStatusCode() == temp) {
+ resultString = EntityUtils.toString(response.getEntity(), "UTF-8");
+ }
+ if (StringUtils.isNoneBlank(resultString)) {
+ JSONObject jsonObject = JSONObject.fromObject(resultString);
+ Integer code = jsonObject.getInt("code");
+ //code==200有错误信息
+ if(code == temp){
+ JSONObject extendObject1 = JSONObject.fromObject(jsonObject);
+ return extendObject1.getString("msg");
+ }
+ }
+ return null;
+ }
+
+ /**
+ * 判断分类id是否存在
+ * */
+ private String checkAssortIds(String assortIds){
+ Zd_Assort assort = new Zd_Assort();
+ assort.setPrintFlag("0");
+ List assortList = assortService.selectAll(assort);
+ if(null != assortList && !assortList.isEmpty()){
+ String[] split = assortIds.split(",");
+ for (int i = 0; i < split.length; i++) {
+ //定义分类存在
+ boolean exist = false;
+ if(StringUtils.isNotBlank(split[i])){
+ for (int j = 0; j < assortList.size(); j++) {
+ if(split[i].equals(assortList.get(j).getAssortId())){
+ exist = true;
+ break;
+ }
+ }
+ }
+ if(!exist){
+ return "病案分类Id有误!";
+ }
+ }
+ }else{
+ return "病案分类Id有误!";
+ }
+ return null;
+ }
+
+ /**
+ * 跳转到showRecordIframe页面
+ * */
+ @RequestMapping("showRecordIframe")
+ public String showRecordIframe(){
+ return "font/showRecordIframe";
+ }
+
+ /**
+ * 根据主键查询病案详情
+ * @param masterId
+ * @return
+ */
+ @ResponseBody
+ @RequestMapping(value = "/getRecord")
+ public String getPdfToPdf(String masterId) throws Exception{
+ Archive_Master archiveMaster = archiveMasterService.selectByPrimaryKey(masterId);
+ //转换科室数据字典
+ if(StringUtils.isNotBlank(archiveMaster.getDeptName())){
+ Emr_Dictionary dictionary = new Emr_Dictionary();
+ dictionary.setCode(archiveMaster.getDeptName());
+ dictionary.setTypecode("dept_code");
+ List dictionaries = dictionaryMapper.dicByTypeCode(dictionary);
+ if(null != dictionaries && !dictionaries.isEmpty()){
+ archiveMaster.setDeptName(dictionaries.get(0).getName());
+ }
+ //判断出院日期
+ String dischargeDateTime = archiveMaster.getDischargeDateTime();
+ if(StringUtils.isNotBlank(dischargeDateTime)){
+ SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd");
+ String time = fmt.format(fmt.parse(dischargeDateTime));
+ if("1801-02-03".equals(time)){
+ archiveMaster.setDischargeDateTime(null);
+ }
+ }
+ }
+ return JSON.toJSONString(archiveMaster);
+ }
+
+ /**
+ * 根据master表的记账号和分类id集合组织分类树
+ * @return
+ * @throws Exception
+ */
+ @ResponseBody
+ @RequestMapping(value = "/getRecordTypeTree")
+ public String getRecordTypeTree(String patientId,String assortIds){
+ List treeList = new ArrayList<>();
+ if(StringUtils.isNotBlank(patientId) && StringUtils.isNotBlank(assortIds)){
+ List list = new ArrayList<>();
+ //assortIds等于协商的全查的分类id,全查
+ if(allAddortIds.equals(assortIds)){
+ list = archiveDetailService.selectTypeTreeByPatientIdAndAssortIds(patientId, null);
+ }else{
+ //否则按条件查
+ //分类id分别以单引号隔开
+ String assortIdStr = "";
+ String[] split = assortIds.split(",");
+ for (int i = 0; i < split.length; i++) {
+ assortIdStr += "'" + split[i] + "',";
+ }
+ //去掉最后一个逗号
+ assortIdStr = assortIdStr.substring(0,assortIdStr.length()-1);
+ list = archiveDetailService.selectTypeTreeByPatientIdAndAssortIds(patientId,assortIdStr);
+ }
+ if(null != list && !list.isEmpty()){
+ Set assortList = new LinkedHashSet<>();
+ //分类去重
+ for(Archive_Detail detail : list){
+ assortList.add(detail.getSubassort());
+ }
+ //组织树
+ int id = 1;
+ //定义第一层的id为第二层父id
+ int oneParentId = 0;
+ //定义第二层的id为第三层父id
+ int twoParentId = 0;
+
+ AssortTypeTree tree = new AssortTypeTree();
+ //第一层,根目录全部影像资料
+ tree.setId(id);
+ tree.setParentId(0);
+ tree.setName("全部影像资料");
+ tree.setChecked("true");
+ treeList.add(tree);
+ oneParentId = id;
+ id++;
+ for(String assortName : assortList){
+ AssortTypeTree tree1 = new AssortTypeTree();
+ //第二层,分类名称
+ tree1.setId(id);
+ tree1.setParentId(oneParentId);
+ twoParentId = id;
+ id++;
+ //定义该类的数量
+ int count = 0;
+ for(Archive_Detail detail : list){
+ if(StringUtils.isNotBlank(detail.getSubassort()) && assortName.equals(detail.getSubassort())){
+ AssortTypeTree tree2 = new AssortTypeTree();
+ //第三层,资料名称
+ count++;
+ tree2.setId(id);
+ tree2.setParentId(twoParentId);
+ tree2.setName(detail.getTitle());
+ tree2.setSelfId(detail.getId());
+ tree2.setChecked("true");
+ treeList.add(tree2);
+ id++;
+ }
+ }
+ tree1.setName(assortName + "("+count+")");
+ tree1.setChecked("true");
+ treeList.add(tree1);
+ }
+ }
+ }
+ return JSON.toJSONString(treeList);
+ }
+
+ /**
+ * 根据病案号或类别或图片id获取图片列表,并生成PDF并返回pdf文件名
+ * @param response
+ * @param detailIds
+ * @param masterId
+ * @return
+ * @throws Exception
+ */
+ @ResponseBody
+ @RequestMapping(value = "/getPdfToPdf/{masterId}/{detailIds}")
+ public void getPdfToPdf(HttpServletResponse response,@PathVariable("detailIds") String detailIds, @PathVariable("masterId") String masterId){
+ archiveDetailService.selectPdfPathByIds(response, detailIds, masterId,pdfWater);
+ }
+ /**
+ * 返回错误页面
+ * */
+ private String retrunErrorPage(Model model,String errorMsg){
+ model.addAttribute("errorMsg",errorMsg);
+ return "font/error";
+ }
+}
diff --git a/src/main/java/com/emr/controller/FormTokenFlagUtil.java b/src/main/java/com/emr/controller/FormTokenFlagUtil.java
new file mode 100644
index 0000000..948611d
--- /dev/null
+++ b/src/main/java/com/emr/controller/FormTokenFlagUtil.java
@@ -0,0 +1,31 @@
+package com.emr.controller;
+
+import org.apache.commons.lang3.StringUtils;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpSession;
+
+/**
+ * @ProjectName:
+ * @Description:
+ * @Param 传输参数
+ * @Return
+ * @Author: 曾文和
+ * @CreateDate: 2019/9/17 14:20
+ * @UpdateUser: 曾文和
+ * @UpdateDate: 2019/9/17 14:20
+ * @UpdateRemark: 更新说明
+ * @Version: 1.0
+ */
+public class FormTokenFlagUtil {
+ public static boolean isFlag(HttpServletRequest request) {
+ HttpSession session = request.getSession();
+ String sesionToken = (String) session.getAttribute("formToken");
+ String token = request.getParameter("formToken");
+ if (StringUtils.isNoneBlank(token) && !(token.equals(sesionToken))) {
+ return false;
+ }
+ session.removeAttribute("formToken");
+ return true;
+ }
+}
diff --git a/src/main/java/com/emr/controller/GlobalExceptionHandler.java b/src/main/java/com/emr/controller/GlobalExceptionHandler.java
new file mode 100644
index 0000000..814162b
--- /dev/null
+++ b/src/main/java/com/emr/controller/GlobalExceptionHandler.java
@@ -0,0 +1,59 @@
+package com.emr.controller;
+
+/**
+ * @ProjectName:
+ * @Description:
+ * @Param 传输参数
+ * @Return
+ * @Author: 曾文和
+ * @CreateDate: 2020/5/15 16:14
+ * @UpdateUser: 曾文和
+ * @UpdateDate: 2020/5/15 16:14
+ * @UpdateRemark: 更新说明
+ * @Version: 1.0
+ */
+import com.alibaba.fastjson.support.spring.FastJsonJsonView;
+import org.apache.log4j.Logger;
+import org.apache.shiro.authz.UnauthorizedException;
+import org.springframework.web.bind.annotation.ControllerAdvice;
+import org.springframework.web.bind.annotation.ExceptionHandler;
+import org.springframework.web.servlet.ModelAndView;
+
+import java.io.ByteArrayOutputStream;
+import java.io.PrintStream;
+import java.util.HashMap;
+import java.util.Map;
+
+@ControllerAdvice
+public class GlobalExceptionHandler {
+ private static Logger log = Logger.getLogger("errorMsg");
+ @ExceptionHandler(value = Exception.class)//指定拦截的异常
+ public ModelAndView errorHandler(Exception e){
+ return returnMv(e,"服务器出错了,请联系系统管理员");
+ }
+ @ExceptionHandler(value = RuntimeException.class)//指定拦截的异常
+ public ModelAndView runtimeHandler(Exception e){
+ return returnMv(e,"服务器出错了,请联系系统管理员");
+ }
+ @ExceptionHandler(value = UnauthorizedException.class)//指定拦截的异常
+ public ModelAndView unauthorizedHandler(Exception e){
+ return returnMv(e,"您权限验证出错了,请联系系统管理员");
+ }
+ private ModelAndView returnMv(Exception e,String msg){
+ ModelAndView mv = new ModelAndView();
+ /* 使用FastJson提供的FastJsonJsonView视图返回,不需要捕获异常 */
+ FastJsonJsonView view = new FastJsonJsonView();
+ Map attributes = new HashMap<>(1);
+ attributes.put("code", "500");
+ attributes.put("msg", msg);
+ view.setAttributesMap(attributes);
+ mv.setView(view);
+ //方法名
+ ByteArrayOutputStream baos = new ByteArrayOutputStream();
+ e.printStackTrace(new PrintStream(baos));
+ String exception = baos.toString();
+ log.error(exception);
+ e.printStackTrace();
+ return mv;
+ }
+}
diff --git a/src/main/java/com/emr/controller/HolidaySetController.java b/src/main/java/com/emr/controller/HolidaySetController.java
new file mode 100644
index 0000000..f111df2
--- /dev/null
+++ b/src/main/java/com/emr/controller/HolidaySetController.java
@@ -0,0 +1,45 @@
+package com.emr.controller;
+
+import com.emr.entity.EmrHolidaySetVo;
+import com.emr.entity.OffsetLimitPage;
+import com.emr.service.ipml.HolidaySetService;
+import com.emr.util.Msg;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.ResponseBody;
+
+@Controller
+@RequestMapping("holidaySet/")
+public class HolidaySetController {
+ @Autowired
+ private HolidaySetService holidaySetService;
+ @RequestMapping("holidaySetList")
+ public String holidaySetList(){
+ return "holidaySetDir/holidaySetList";
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "getHolidaySetList")
+ public OffsetLimitPage getHolidaySetList(EmrHolidaySetVo holidaySetVo) {
+ return holidaySetService.selectByColumn(holidaySetVo);
+ }
+
+ @RequestMapping("save")
+ @ResponseBody
+ public Msg save(String startTime,String endTime,String checkBoxes,Integer flag) throws Exception{
+ holidaySetService.update(startTime, endTime, checkBoxes, flag);
+ return Msg.success();
+ }
+
+ @RequestMapping("update")
+ @ResponseBody
+ public Msg update(Integer flag,Integer id) throws Exception{
+ if(flag != null) {
+ holidaySetService.update(flag, id);
+ return Msg.success();
+ }else{
+ return Msg.fail("工作日状态不能为空!");
+ }
+ }
+}
diff --git a/src/main/java/com/emr/controller/JAXDynamicClientFactory.java b/src/main/java/com/emr/controller/JAXDynamicClientFactory.java
new file mode 100644
index 0000000..de83943
--- /dev/null
+++ b/src/main/java/com/emr/controller/JAXDynamicClientFactory.java
@@ -0,0 +1,55 @@
+package com.emr.controller;
+
+import org.apache.cxf.Bus;
+import org.apache.cxf.bus.CXFBusFactory;
+import org.apache.cxf.endpoint.EndpointImplFactory;
+import org.apache.cxf.endpoint.dynamic.DynamicClientFactory;
+import org.apache.cxf.jaxws.support.JaxWsEndpointImplFactory;
+
+import java.util.List;
+
+/**
+ * @ProjectName:
+ * @Description:
+ * @Param 传输参数
+ * @Return
+ * @Author: 曾文和
+ * @CreateDate: 2019/9/11 16:15
+ * @UpdateUser: 曾文和
+ * @UpdateDate: 2019/9/11 16:15
+ * @UpdateRemark: 更新说明
+ * @Version: 1.0
+ */
+public class JAXDynamicClientFactory extends DynamicClientFactory {
+ protected JAXDynamicClientFactory(Bus bus) {
+ super(bus);
+ }
+
+ @Override
+ protected EndpointImplFactory getEndpointImplFactory() {
+ return JaxWsEndpointImplFactory.getSingleton();
+ }
+ @Override
+ protected boolean allowWrapperOps() {
+ return true;
+ }
+
+ public static JAXDynamicClientFactory newInstance(Bus b) {
+ return new JAXDynamicClientFactory(b);
+ }
+
+ public static JAXDynamicClientFactory newInstance() {
+ Bus bus = CXFBusFactory.getThreadDefaultBus();
+ return new JAXDynamicClientFactory(bus);
+ }
+ @Override
+ public boolean compileJavaSrc(String classPath, List srcList, String dest) {
+ org.apache.cxf.common.util.Compiler javaCompiler
+ = new org.apache.cxf.common.util.Compiler();
+ javaCompiler.setEncoding("UTF-8");
+ javaCompiler.setClassPath(classPath);
+ javaCompiler.setOutputDir(dest);
+ javaCompiler.setTarget("1.8");
+ return javaCompiler.compileFiles(srcList);
+ }
+}
diff --git a/src/main/java/com/emr/controller/LoginController.java b/src/main/java/com/emr/controller/LoginController.java
new file mode 100644
index 0000000..369e6e0
--- /dev/null
+++ b/src/main/java/com/emr/controller/LoginController.java
@@ -0,0 +1,72 @@
+package com.emr.controller;
+
+import com.emr.entity.Power_User;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.cxf.endpoint.Client;
+import org.apache.shiro.SecurityUtils;
+import org.apache.shiro.authc.UsernamePasswordToken;
+import org.apache.shiro.subject.Subject;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Controller;
+import org.springframework.ui.Model;
+import org.springframework.web.bind.annotation.RequestMapping;
+
+import javax.servlet.http.HttpServletRequest;
+
+/**
+ * @author HJL
+ * @create 2019/4/29
+ */
+@Controller
+public class LoginController {
+
+ @Value("${POWER_URLHEAD}")
+ private String POWER_URLHEAD;
+
+ @Value("${POWER_JSP}")
+ private String POWER_JSP;
+
+ @Value("${powerUrl}")
+ private String powerUrl;
+
+ @RequestMapping(value = "/toLogin")
+ public String toLogin(Model model) {
+ return "redirect:/login.jsp";
+ }
+
+ //实现用户登录@PathVariable("username")
+ @RequestMapping(value = "/login")
+ public String login(Model model, HttpServletRequest request) throws Exception{
+ String token = request.getParameter("token");
+ if(StringUtils.isNoneBlank(token)){
+ JAXDynamicClientFactory dcf = JAXDynamicClientFactory.newInstance();
+ Client client = dcf.createClient(POWER_URLHEAD + "/WebService/PowerWebService?wsdl");
+ Object[] objects = client.invoke("getInfosByUserId", token, "emr_medical_record");
+ ObjectMapper mapper = new ObjectMapper();
+ Power_User powerUser = mapper.readValue(objects[0].toString(), Power_User.class);
+ //设置进session
+ request.getSession().setAttribute("CURRENT_USER", powerUser);
+ if (null == powerUser.getUserId()) {
+ return "redirect:/emr_medical_record/error.jsp";
+ }
+ String userName = request.getParameter("userName");
+ UsernamePasswordToken userToken = new UsernamePasswordToken(userName, "123456");
+ Subject subject = SecurityUtils.getSubject();
+ subject.login(userToken);
+ model.addAttribute("POWER_URLHEAD", POWER_JSP);
+ request.getSession().setAttribute("token", token);
+ }else{
+ return "redirect:"+POWER_URLHEAD+"/login";
+ }
+ return "index";
+ }
+
+ @RequestMapping(value = "/index")
+ public String Login() {
+ return "index";
+ }
+
+}
+
+
diff --git a/src/main/java/com/emr/controller/MedicalRecallController.java b/src/main/java/com/emr/controller/MedicalRecallController.java
new file mode 100644
index 0000000..83eb1e9
--- /dev/null
+++ b/src/main/java/com/emr/controller/MedicalRecallController.java
@@ -0,0 +1,90 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 14:39
+ * Description:病案终审退回
+ */
+package com.emr.controller;
+
+import com.emr.dao.Archive_MasterMapper;
+import com.emr.entity.*;
+import com.emr.service.Archive_MasterService;
+import com.emr.service.ipml.ArchiveCallbackInfoService;
+import com.emr.util.ExportExcelUtil;
+import com.emr.util.Msg;
+import org.apache.commons.lang3.StringUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.context.annotation.PropertySource;
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.ResponseBody;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.text.SimpleDateFormat;
+import java.util.Date;
+import java.util.List;
+
+@PropertySource(value = "classpath:config/jdbc.properties", encoding = "UTF-8")
+@Controller
+@RequestMapping("/medicalRecall")
+public class MedicalRecallController {
+ @Autowired
+ private Archive_MasterMapper archiveMasterMapper;
+
+ @Autowired
+ private Archive_MasterService archiveMasterService;
+
+ @Autowired
+ private ArchiveCallbackInfoService callbackInfoService;
+
+ @Value("${recallReason}")
+ private String recallReason;
+
+ @RequestMapping(value = "/recall")
+ public String recall() {
+ return "medicalRecallDir/medicalRecallList";
+ }
+
+
+ /**
+ * 病案终审退回
+ * */
+ @ResponseBody
+ @RequestMapping(value = "/recallList")
+ public OffsetLimitPage recallList(Archive_Master_Vo master, Integer offset, Integer limit) {
+ //查询已归档记录
+ return archiveMasterService.selectFiled(master, offset, limit);
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/exportExcel")
+ public void exportExcel(HttpServletResponse response, Archive_Master_Vo master) throws Exception {
+ String tableThNames = "住院号,住院次数,名字,性别,入院科室,入院日期,出院科室,出院日期,上次召回状态,归档状态";
+ String fieldCns = "inpNo,visitId,name,sex,deptAdmissionTo,admissionDateTime,deptName,dischargeDateTime,status,archivestate";
+ List list = archiveMasterMapper.selectFiled(master);
+ //文件名
+ String fileName = "归档记录" + new SimpleDateFormat("yyyyMMddHHmmss").format(new Date()) + ".xls";
+ //ExportExcelUtil
+ ExportExcelUtil exportExcelUtil = new ExportExcelUtil();
+ //导出excel的操作
+ exportExcelUtil.expordExcel(tableThNames,fieldCns,list,fileName,response);
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/updateState")
+ public Msg updateState(HttpServletRequest request,ArchiveCallbackInfo callbackInfo) throws Exception{
+ boolean flag = FormTokenFlagUtil.isFlag(request);
+ if (!flag) {
+ return Msg.fail("请不要重复提交!");
+ }
+ if(StringUtils.isBlank(callbackInfo.getCallbackReason())){
+ callbackInfo.setCallbackReason(recallReason);
+ }
+ callbackInfoService.insertCallbackInfoService(callbackInfo);
+ return Msg.success();
+ }
+}
+
+
diff --git a/src/main/java/com/emr/controller/StatisticsController.java b/src/main/java/com/emr/controller/StatisticsController.java
new file mode 100644
index 0000000..7b0281d
--- /dev/null
+++ b/src/main/java/com/emr/controller/StatisticsController.java
@@ -0,0 +1,310 @@
+package com.emr.controller;
+
+import com.emr.entity.Archive_Master_Vo;
+import com.emr.entity.OffsetLimitPage;
+import com.emr.service.ipml.StatisticsService;
+import com.emr.util.ExportExcelUtil1;
+import com.emr.vo.FinalAndFirstStatistics;
+import com.emr.vo.TUuInfoVo;
+import com.emr.vo.TUuPrintSearch;
+import com.emr.vo.TUuPrintVo;
+import com.github.pagehelper.Page;
+import com.github.pagehelper.PageHelper;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.ResponseBody;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.text.SimpleDateFormat;
+import java.util.Date;
+import java.util.List;
+
+/**
+ * @ProjectName:
+ * @Description:
+ * @Param 传输参数
+ * @Return
+ * @Author: 曾文和
+ * @CreateDate: 2020/1/8 14:52
+ * @UpdateUser: 曾文和
+ * @UpdateDate: 2020/1/8 14:52
+ * @UpdateRemark: 更新说明
+ * @Version: 1.0
+ */
+@Controller
+@RequestMapping("statistics/")
+public class StatisticsController {
+ @Autowired
+ private StatisticsService statisticsService;
+ //终审按天统计
+ @RequestMapping("finalStatistics")
+ public String finalStatistics(){
+ return "statistics/finalStatistics";
+ }
+
+ //终审明细
+ @RequestMapping("finalStatisticsDetail")
+ public String finalStatisticsDetail(){
+ return "statistics/finalStatisticsDetail";
+ }
+
+ //初审按天统计
+ @RequestMapping("firstStatistics")
+ public String firstStatistics(){
+ return "statistics/firstStatistics";
+ }
+
+ //初审终审明细
+ @RequestMapping("statisticsDetail")
+ public String statisticsDetail(){
+ return "statistics/statisticsDetail";
+ }
+
+ //复印记录报表
+ @RequestMapping("printCount")
+ public String printCount(){
+ return "statistics/printCount";
+ }
+
+ //复印记录明细
+ @RequestMapping("printInfo")
+ public String printInfo(){
+ return "statistics/printInfo";
+ }
+
+ //扫描上传记录报表
+ @RequestMapping("scanCount")
+ public String scanCount(){
+ return "statistics/scanCount";
+ }
+
+ //扫描上传明细
+ @RequestMapping("scanInfo")
+ public String scanInfo(){
+ return "statistics/scanInfo";
+ }
+
+ //终审按天统计
+ @RequestMapping("getFinalStatistics")
+ @ResponseBody
+ public OffsetLimitPage getFinalStatistics(HttpServletRequest request,Integer offset, Integer limit, String startDate, String endDate,Integer isSearch){
+ //判断是否是初始化查询,是初始化查询把开始结束时间置空
+ if(isSearch == 0){
+ startDate = null;
+ endDate = null;
+ }
+ List list = statisticsService.getFinalStatistics(offset, limit, startDate, endDate,null);
+ return new OffsetLimitPage((Page)list);
+ }
+
+ //初审按天统计
+ @RequestMapping("getFirstStatistics")
+ @ResponseBody
+ public OffsetLimitPage getFirstStatistics(HttpServletRequest request,Integer offset, Integer limit, String startDate, String endDate,Integer isSearch){
+ //判断是否是初始化查询,是初始化查询把开始结束时间置空
+ if(isSearch == 0){
+ startDate = null;
+ endDate = null;
+ }
+ List list = statisticsService.getFirstStatistics(request, offset, limit, startDate, endDate,null);
+ return new OffsetLimitPage((Page) list);
+ }
+
+
+ //审核明细
+ @RequestMapping("getStatisticsDetail")
+ @ResponseBody
+ public OffsetLimitPage getStatisticsDetail(Integer offset, Integer limit,String disStartDate, String disEndDate, Archive_Master_Vo archiveMasterVo,Integer flag,Integer isSearch){
+ //判断是否是初始化查询,是初始化查询把开始结束时间置空
+ if(isSearch == 0){
+ disStartDate = null;
+ disEndDate = null;
+ archiveMasterVo.setStartDate(null);
+ archiveMasterVo.setEndDate(null);
+ }
+ return statisticsService.getStatisticsDetail(offset,limit,disStartDate,disEndDate,archiveMasterVo,flag);
+ }
+
+ //导出终审统计
+ @RequestMapping("exportExcelFinalStatistics")
+ @ResponseBody
+ public void exportExcelFinalStatistics(HttpServletResponse response,Integer offset, Integer limit, String startDate, String endDate,String sql,Integer isSearch) throws Exception{
+ //全部明细
+ String tableThNames = "工号,姓名,终审日期,终审数量";
+ String fieldCns = "checkCode,checkName,createTime,count";
+ //判断是否是初始化查询,是初始化查询把开始结束时间置空
+ if(isSearch == 0){
+ startDate = null;
+ endDate = null;
+ }
+ List list = statisticsService.getFinalStatistics(offset, limit, startDate, endDate,sql);
+ //文件名
+ String fileName = "终审记录统计报表(" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()) + ").xls";
+ //ExportExcelUtil
+ ExportExcelUtil1 exportExcelUtil = new ExportExcelUtil1();
+ //导出excel的操作
+ exportExcelUtil.expordExcel(tableThNames,fieldCns,list,fileName,response);
+ }
+
+ //导出初审统计
+ @RequestMapping("exportExcelFirstStatistics")
+ @ResponseBody
+ public void exportExcelFirstStatistics(HttpServletRequest request,HttpServletResponse response,Integer offset, Integer limit, String startDate, String endDate,String sql,Integer isSearch) throws Exception{
+ //全部明细
+ String tableThNames = "工号,姓名,审核日期,审核数量";
+ String fieldCns = "checkCode,checkName,createTime,count";
+ //判断是否是初始化查询,是初始化查询把开始结束时间置空
+ if(isSearch == 0){
+ startDate = null;
+ endDate = null;
+ }
+ List list = statisticsService.getFirstStatistics(request, offset, limit, startDate, endDate,sql);
+ //文件名
+ String fileName = "病案室审核记录统计表(" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()) + ").xls";
+ //ExportExcelUtil
+ ExportExcelUtil1 exportExcelUtil = new ExportExcelUtil1();
+ //导出excel的操作
+ exportExcelUtil.expordExcel(tableThNames,fieldCns,list,fileName,response);
+ }
+
+ //导出审核明细
+ @RequestMapping("exportExcelDetail")
+ @ResponseBody
+ public void exportExcelDetail(HttpServletResponse response,String disStartDate, String disEndDate, Archive_Master_Vo archiveMasterVo, Integer flag,String sql,Integer isSearch) throws Exception{
+ //全部明细
+ String tableThNames = "";
+ String fieldCns = "";
+ if(flag == 2){
+ tableThNames = "初审工号,初审姓名,初审日期,终审工号,终审姓名,终审日期,患者姓名,住院号,出院科室,出院日期,入院科室,入院日期,住院天数";
+ fieldCns = "checkDoctor,checkName,checkDatetime,checkedDoctor,checkedName,checkedDatetime,name,inpNo,deptName,dischargeDateTime,deptAdmissionTo,admissionDateTime,days";
+ }else{
+ //终审明细
+ tableThNames = "终审工号,终审姓名,终审日期,患者姓名,住院号,出院科室,出院日期,入院科室,入院日期,住院天数";
+ fieldCns = "checkedDoctor,checkedName,checkedDatetime,name,inpNo,deptName,dischargeDateTime,deptAdmissionTo,admissionDateTime,days";
+ }
+ //判断是否是初始化查询,是初始化查询把开始结束时间置空
+ if(isSearch == 0){
+ disStartDate = null;
+ disEndDate = null;
+ archiveMasterVo.setStartDate(null);
+ archiveMasterVo.setEndDate(null);
+ }
+ List list = statisticsService.getDetailList(disStartDate, disEndDate, archiveMasterVo,flag,sql);
+ //文件名
+ String fileName = "病案室审核记录明细报表(" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()) + ").xls";
+ //ExportExcelUtil
+ ExportExcelUtil1 exportExcelUtil = new ExportExcelUtil1();
+ //导出excel的操作
+ exportExcelUtil.expordExcel(tableThNames,fieldCns,list,fileName,response);
+ }
+
+ //复印记录报表
+ @RequestMapping("getPrintCount")
+ @ResponseBody
+ public OffsetLimitPage getPrintCount(Integer offset, Integer limit, TUuPrintSearch search){
+ if(null != offset && null != limit){
+ PageHelper.offsetPage(offset, limit);
+ }
+ List list = statisticsService.getPrintCount(search);
+ return new OffsetLimitPage((Page)list);
+ }
+
+ //复印记录明细
+ @RequestMapping("getPrintInfo")
+ @ResponseBody
+ public OffsetLimitPage getPrintInfo(Integer offset, Integer limit,TUuPrintSearch search){
+ if(null != offset && null != limit){
+ PageHelper.offsetPage(offset, limit);
+ }
+ List list = statisticsService.getPrintInfo(search);
+ return new OffsetLimitPage((Page)list);
+ }
+
+ //扫描记录报表
+ @RequestMapping("getScanCount")
+ @ResponseBody
+ public OffsetLimitPage getScanCount(Integer offset, Integer limit,TUuPrintSearch search){
+ if(null != offset && null != limit){
+ PageHelper.offsetPage(offset, limit);
+ }
+ List list = statisticsService.getScanCount(search);
+ return new OffsetLimitPage((Page)list);
+ }
+
+ //扫描记录明细
+ @RequestMapping("getScanInfo")
+ @ResponseBody
+ public OffsetLimitPage getScanInfo(Integer offset, Integer limit,TUuPrintSearch search){
+ if(null != offset && null != limit){
+ PageHelper.offsetPage(offset, limit);
+ }
+ List list = statisticsService.getScanInfo(search);
+ return new OffsetLimitPage((Page)list);
+ }
+
+ //导出复印记录报表
+ @RequestMapping("exportExcelPrintCount")
+ @ResponseBody
+ public void exportExcelPrintCount(HttpServletResponse response,TUuPrintSearch search) throws Exception{
+ //全部明细
+ String tableThNames = "记账号,住院号,住院次数,患者,复印日期,操作人,复印次数";
+ String fieldCns = "patientId,inpNo,visitId,hzname,printTime,cpyuser,printCount";
+ List list = statisticsService.getPrintCount(search);
+ //文件名
+ String fileName = "复印记录报表(" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()) + ").xls";
+ //ExportExcelUtil
+ ExportExcelUtil1 exportExcelUtil = new ExportExcelUtil1();
+ //导出excel的操作
+ exportExcelUtil.expordExcel(tableThNames,fieldCns,list,fileName,response);
+ }
+
+ //导出复印记录明细
+ @RequestMapping("exportExcelPrintInfo")
+ @ResponseBody
+ public void exportExcelPrintInfo(HttpServletResponse response,TUuPrintSearch search) throws Exception{
+ //全部明细
+ String tableThNames = "记账号,住院号,住院次数,患者姓名,性别,入院时间,出院时间,出院科室,主管医生,复印内容,操作人,复印日期,修改标志";
+ String fieldCns = "patientId,inpNo,visitId,hzname,sex,admissionDateTime,dischargeDateTime,name,doctorInCharge,filetitle,cpyuser,printTime,flagCn";
+ List list = statisticsService.getPrintInfo(search);
+ //文件名
+ String fileName = "复印记录明细(" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()) + ").xls";
+ //ExportExcelUtil
+ ExportExcelUtil1 exportExcelUtil = new ExportExcelUtil1();
+ //导出excel的操作
+ exportExcelUtil.expordExcel(tableThNames,fieldCns,list,fileName,response);
+ }
+
+ //导出扫描记录报表
+ @RequestMapping("exportExcelScanCount")
+ @ResponseBody
+ public void exportExcelScanCount(HttpServletResponse response,TUuPrintSearch search) throws Exception{
+ //全部明细
+ String tableThNames = "扫描人,扫描日期,扫描次数";
+ String fieldCns = "uuname,uploaddatetime,scanCount";
+ List list = statisticsService.getScanCount(search);
+ //文件名
+ String fileName = "扫描上传记录报表(" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()) + ").xls";
+ //ExportExcelUtil
+ ExportExcelUtil1 exportExcelUtil = new ExportExcelUtil1();
+ //导出excel的操作
+ exportExcelUtil.expordExcel(tableThNames,fieldCns,list,fileName,response);
+ }
+
+ //导出扫描记录明细
+ @RequestMapping("exportExcelScanInfo")
+ @ResponseBody
+ public void exportExcelScanInfo(HttpServletResponse response,TUuPrintSearch search) throws Exception{
+ //全部明细
+ String tableThNames = "记账号,住院号,住院次数,患者姓名,性别,入院时间,出院时间,出院科室,主管医生,扫描人,扫描时间";
+ String fieldCns = "patientId,inpNo,visitId,hzname,sex,admissionDateTime,dischargeDateTime,doctorDept,doctorInCharge,uuname,uploaddatetime";
+ List list = statisticsService.getScanInfo(search);
+ //文件名
+ String fileName = "扫描上传记录明细(" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()) + ").xls";
+ //ExportExcelUtil
+ ExportExcelUtil1 exportExcelUtil = new ExportExcelUtil1();
+ //导出excel的操作
+ exportExcelUtil.expordExcel(tableThNames,fieldCns,list,fileName,response);
+ }
+}
diff --git a/src/main/java/com/emr/controller/UploadFilesController.java b/src/main/java/com/emr/controller/UploadFilesController.java
new file mode 100644
index 0000000..75e91b1
--- /dev/null
+++ b/src/main/java/com/emr/controller/UploadFilesController.java
@@ -0,0 +1,118 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/10 17:09
+ * Description:
+ */
+package com.emr.controller;
+
+import org.apache.log4j.Logger;
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestMethod;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.ResponseBody;
+import org.springframework.web.multipart.MultipartFile;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.io.File;
+import java.io.IOException;
+import java.io.PrintWriter;
+
+@Controller
+@RequestMapping(value = "/Upload")
+public class UploadFilesController {
+ private Logger logger = Logger.getLogger(UploadFilesController.class);
+ /**
+ * app申请打印图片
+ *
+ * @param
+ * @return
+ * @throws IOException
+ */
+ @RequestMapping(value = "/uploadImg", method = RequestMethod.POST)
+ public void uploadImg(HttpServletResponse resp, HttpServletRequest request, @RequestParam(value = "file", required = false) MultipartFile file) throws IOException {
+ resp.setContentType("text/json");
+ resp.setCharacterEncoding("utf-8");
+ PrintWriter pw = null;
+ pw = resp.getWriter();
+ if (!file.isEmpty()) {
+ logger.info("成功获取照片");
+ String fileName = file.getOriginalFilename();
+ String path = null;
+ String type = null;
+ if (fileName != null) {
+ type = fileName.contains(".") ? fileName.substring(fileName.lastIndexOf(".") + 1) : null;
+ }
+ logger.info("图片初始名称为:" + fileName + " 类型为:" + type);
+ if (type != null) {
+ if ("PDF".equals(type.toUpperCase())) {
+ // 项目在容器中实际发布运行的根路径
+ String realPath = request.getSession().getServletContext().getRealPath("/");
+ // 自定义的文件名称
+ String trueFileName = System.currentTimeMillis() + fileName;
+ // 设置存放图片文件的路径
+ path = realPath + "/static/img/uploads/" + trueFileName;
+ logger.info("存放图片文件的路径:" + path);
+ file.transferTo(new File(path));
+ logger.info("文件成功上传到指定目录下");
+ } else {
+ logger.info("不是PDF文件类型,请按要求重新上传");
+ pw.print("文件类型有误,请重新上传");
+ }
+ } else {
+ logger.info("文件类型为空");
+ pw.print("文件类型为空");
+ }
+ } else {
+ logger.info("没有找到相对应的文件");
+ pw.print("没有找到相对应的文件");
+ }
+ pw.flush();
+ }
+
+ @ResponseBody
+ @RequestMapping("upload")
+ public String upload(HttpServletRequest request, @RequestParam(value = "file", required = false) MultipartFile file) throws IOException {
+ request.setCharacterEncoding("UTF-8");
+ logger.info("执行图片上传");
+ String userId = request.getParameter("userId");
+ logger.info("userId:" + userId);
+ if (!file.isEmpty()) {
+ logger.info("成功获取照片");
+ String fileName = file.getOriginalFilename();
+ String path = null;
+ String type = null;
+ if (fileName != null) {
+ type = fileName.contains(".") ? fileName.substring(fileName.lastIndexOf(".") + 1) : null;
+ }
+ logger.info("图片初始名称为:" + fileName + " 类型为:" + type);
+ if (type != null) {
+ if ("GIF".equals(type.toUpperCase()) || "PNG".equals(type.toUpperCase()) || "JPG".equals(type.toUpperCase())) {
+ // 项目在容器中实际发布运行的根路径
+ String realPath = request.getSession().getServletContext().getRealPath("/");
+ // 自定义的文件名称
+ String trueFileName = System.currentTimeMillis() + fileName;
+ // 设置存放图片文件的路径
+ path = realPath + "/uploads/" + trueFileName;
+ logger.info("存放图片文件的路径:" + path);
+ file.transferTo(new File(path));
+ logger.info("文件成功上传到指定目录下");
+ } else {
+ logger.info("不是我们想要的文件类型,请按要求重新上传");
+ return "error";
+ }
+ } else {
+ logger.info("文件类型为空");
+ return "error";
+ }
+ } else {
+ logger.info("没有找到相对应的文件");
+ return "error";
+ }
+ return "success";
+ }
+}
+
+
diff --git a/src/main/java/com/emr/controller/UrlInterceptor.java b/src/main/java/com/emr/controller/UrlInterceptor.java
new file mode 100644
index 0000000..857ed52
--- /dev/null
+++ b/src/main/java/com/emr/controller/UrlInterceptor.java
@@ -0,0 +1,57 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/8/22 13:49
+ * Description:
+ */
+package com.emr.controller;
+
+import com.emr.entity.Power_User;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.cxf.endpoint.Client;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.web.servlet.HandlerInterceptor;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+public class UrlInterceptor implements HandlerInterceptor {
+ @Value("${POWER_URLHEAD}")
+ private String POWER_URLHEAD;
+
+ @Value("${powerUrl}")
+ private String powerUrl;
+
+ @Override
+ public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object o){
+ String url = request.getServletPath();
+ String token = (String) request.getSession().getAttribute("token");
+ if (!"/login".equals(url) && StringUtils.isNoneBlank(token)) {
+ try {
+ JAXDynamicClientFactory dcf = JAXDynamicClientFactory.newInstance();
+ Client client = dcf.createClient(POWER_URLHEAD + "/WebService/PowerWebService?wsdl");
+ Object[] objects = client.invoke("getInfosByUserId", token, "emr_medical_record");
+ ObjectMapper mapper = new ObjectMapper();
+ Power_User powerUser = mapper.readValue(objects[0].toString(), Power_User.class);
+ //设置进session
+ request.getSession().setAttribute("CURRENT_USER", powerUser);
+ if (null == powerUser.getUserId()) {
+ response.sendRedirect( "/emr_medical_record/error.jsp");
+ return false;
+ }
+ } catch (Exception e) {
+ try {
+ response.sendRedirect("/emr_medical_record/error.jsp");
+ }catch (Exception e1){}
+ e.printStackTrace();
+ return false;
+ }
+ }
+ return true;
+ }
+
+
+}
+
+
diff --git a/src/main/java/com/emr/controller/VCountController.java b/src/main/java/com/emr/controller/VCountController.java
new file mode 100644
index 0000000..ecf5fa8
--- /dev/null
+++ b/src/main/java/com/emr/controller/VCountController.java
@@ -0,0 +1,248 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 14:39
+ * Description:缺陷管理
+ */
+package com.emr.controller;
+
+import com.emr.dao.Archive_MasterMapper;
+import com.emr.entity.*;
+import com.emr.service.*;
+import com.emr.util.ExportExcelUtil;
+import com.emr.util.ExportExcelUtil1;
+import com.emr.vo.DeptStatistics;
+import com.emr.vo.DoctorStatistics;
+import com.emr.vo.V_CountVo;
+import org.apache.shiro.util.CollectionUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Controller;
+import org.springframework.ui.Model;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.ResponseBody;
+
+import javax.servlet.http.HttpServletResponse;
+import java.text.SimpleDateFormat;
+import java.util.*;
+
+@Controller
+@RequestMapping("vCount")
+public class VCountController {
+ @Autowired
+ private V_CountService v_countService;
+
+ @Autowired
+ private Archive_MasterService archiveMasterService;
+
+ @Autowired
+ private Emr_DictionaryService emrDictionaryService;
+
+ @Autowired
+ private Archive_MasterMapper archiveMasterMapper;
+
+ @RequestMapping(value = "/vCounts")
+ public String faults(){
+ return "vCountDir/vCountList";
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/vCountList")
+ public OffsetLimitPage faultList(V_CountVo vCount, Integer offset, Integer limit) {
+ return v_countService.selectPageByClo(vCount,offset, limit);
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/vCountNumList")
+ public List medicalCountDayList(V_CountVo vCount){
+ //统计列表
+ return v_countService.selectByCol(vCount);
+ }
+
+
+ @ResponseBody
+ @RequestMapping(value = "/exportExcel")
+ public void exportExcel(HttpServletResponse response, V_CountVo vCount) throws Exception {
+ String tableThNames = "科室代码,科室名称,出院人数,已归档,未归档,死亡人数,归档率(%),2日率(%),3日率(%),7日率(%)";
+ String fieldCns = "deptCode,deptName,outNum,fileNum,unfileNum,deathNum,fileRate,day2Rate,day3Rate,day7Rate";
+ //构造excel的数据
+ List list = v_countService.selectByCol(vCount);
+ if(null != list && !list.isEmpty()){
+ for (V_Count count : list) {
+ Double fileRate = Double.valueOf(count.getFileRate())*100;
+ Double day2Rate = Double.valueOf(count.getDay2Rate())*100;
+ Double day3Rate = Double.valueOf(count.getDay3Rate())*100;
+ Double day7Rate = Double.valueOf(count.getDay7Rate())*100;
+ count.setFileRate(fileRate.intValue()+"%");
+ count.setDay2Rate(day2Rate.intValue()+"%");
+ count.setDay3Rate(day3Rate.intValue()+"%");
+ count.setDay7Rate(day7Rate.intValue()+"%");
+ }
+ }
+ //文件名
+ String fileName = "统计数据" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()) + ".xls";
+ //ExportExcelUtil
+ ExportExcelUtil1 exportExcelUtil = new ExportExcelUtil1();
+ //导出excel的操作
+ exportExcelUtil.expordExcel(tableThNames, fieldCns, list, fileName, response);
+ }
+
+
+ @ResponseBody
+ @RequestMapping(value = "/exportExcel2")
+ public void exportExcel(HttpServletResponse response, Archive_Master_Vo archiveMasterVo) throws Exception {
+ String tableThNames = "名字,入院科室,入院日期,出院科室,出院日期,主管医生";
+ String fieldCns = "name,deptAdmissionTo,admissionDateTime,deptName,dischargeDateTime,doctorInCharge";
+ //构造excel的数据
+ List list = archiveMasterService.selectByUnfile(archiveMasterVo);
+ Emr_Dictionary dic = new Emr_Dictionary();
+ dic.setEffective(1);
+ dic.setTypecode("dept_code");
+ //科室列表
+ List dicList = emrDictionaryService.dicByTypeCode(dic);
+ for (int i = 0; i < list.size(); i++) {
+ //替换科室
+ for (int k = 0; k < dicList.size(); k++) {
+ String deptName = list.get(i).getDeptName();
+ //入院科室dept_admission_to
+ String dept2 = list.get(i).getDeptAdmissionTo();
+
+ if ((deptName != null && deptName.equals(dicList.get(k).getCode())) || (dept2 != null && dept2.equals(dicList.get(k).getCode()))) {
+ //出院科室
+ if(deptName != null) {
+ deptName = deptName.replace(deptName, dicList.get(k).getName());
+ list.get(i).setDeptName(deptName);
+ }
+ dept2 = dept2.replace(dept2, dicList.get(k).getName());
+ list.get(i).setDeptAdmissionTo(dept2);
+ }
+ }
+ }
+
+ //文件名
+ String fileName = "未归档病历列表" + new SimpleDateFormat("yyyyMMddHHmmss").format(new Date()) + ".xls";
+ //ExportExcelUtil
+ ExportExcelUtil exportExcelUtil = new ExportExcelUtil();
+ response.setContentType("application/ms-excel;charset=gbk");
+ //导出excel的操作
+ exportExcelUtil.expordExcel(tableThNames, fieldCns, list, fileName, response);
+ }
+
+ //跳转医生统计页面
+ @RequestMapping("/doctorFileList")
+ public String doctorFileList(){
+ return "vCountDir/doctorFileList";
+ }
+
+ //加载医生统计表格iframe
+ @RequestMapping("/getDoctorFileInfoIframe")
+ public String getDoctorFileInfoIframe(String deptCode,String doctor,String startTime,String endTime,Model model){
+ //科室医师明细
+ List list = archiveMasterMapper.getDoctorFileInfo(deptCode, doctor, startTime, endTime);
+ //定义返回结果
+ List deptList = new ArrayList<>();
+ if(null != list && !list.isEmpty()){
+ //定义科室集合
+ Map deptMap = new LinkedHashMap<>();
+ for (DoctorStatistics info:list) {
+ deptMap.put(info.getDeptName(),info.getDeptName());
+ }
+ if(!CollectionUtils.isEmpty(deptMap)){
+ for(Map.Entry dept:deptMap.entrySet()){
+ DeptStatistics deptStatistics = new DeptStatistics();
+ //设置科室总住院天数
+ int deptAdmissDay = 0;
+ //设置科室总逾期天数
+ int deptOverDays = 0;
+ //设置科室总份数
+ int deptCount = 0;
+ //设置科室总逾期份数
+ int deptOverCount = 0;
+ //定义科室结合
+ List deptDoctorList = new ArrayList<>();
+ //定义不重复医生集合
+ Map doctorMap = new LinkedHashMap<>();
+ for (DoctorStatistics info:list) {
+ if(dept.getKey().equals(info.getDeptName())){
+ //统计住院总天数
+ deptAdmissDay += info.getAdmissDays();
+ //统计逾期天数
+ deptOverDays += info.getOverDays();
+ //统计总份数
+ deptCount++;
+ //统计总逾期份数
+ if(info.getOverDays() > 0){
+ deptOverCount++;
+ }
+ deptDoctorList.add(info);
+ doctorMap.put(info.getDoctor(),info.getDoctor());
+ }
+ }
+ //定义医生集合
+ List doctorList = new ArrayList<>();
+ //组织统计医生归档情况
+ if(!CollectionUtils.isEmpty(deptDoctorList)){
+ if(!CollectionUtils.isEmpty(doctorMap)){
+ for(Map.Entry doctorKey:doctorMap.entrySet()){
+ DoctorStatistics doctorStatistics = new DoctorStatistics();
+ String deptName = "";
+ //设置总住院天数
+ int admissDay = 0;
+ //设置总逾期天数
+ int overDays = 0;
+ //设置总份数
+ int count = 0;
+ //设置总逾期份数
+ int overCount = 0;
+ for (DoctorStatistics info:list) {
+ if (doctorKey.getKey().equals(info.getDoctor())) {
+ deptName = info.getDeptName();
+ //统计总天数
+ admissDay += info.getAdmissDays();
+ //统计逾期天数
+ overDays += info.getOverDays();
+ //统计总份数
+ count++;
+ //统计总逾期份数
+ if(info.getOverDays() > 0){
+ overCount++;
+ }
+ }
+ }
+ //设置科室名称
+ doctorStatistics.setDeptName(deptName);
+ //设置医生名称
+ doctorStatistics.setDoctor(doctorKey.getKey());
+ //设置总住院天数
+ doctorStatistics.setAdmissDays(admissDay);
+ //设置总逾期天数
+ doctorStatistics.setOverDays(overDays);
+ //设置总份数
+ doctorStatistics.setRecordCount(count);
+ //设置总逾期份数
+ doctorStatistics.setRecordOverCount(overCount);
+ doctorList.add(doctorStatistics);
+ }
+ }
+ }
+ //设置科室名
+ deptStatistics.setDeptName(dept.getValue());
+ //设置科室总住院天数
+ deptStatistics.setDeptAdmissDay(deptAdmissDay);
+ //设置科室总逾期天数
+ deptStatistics.setDeptOverDays(deptOverDays);
+ //设置科室总份数
+ deptStatistics.setDeptCount(deptCount);
+ //设置科室总逾期份数
+ deptStatistics.setDeptOverCount(deptOverCount);
+ //设置医生集合
+ deptStatistics.setDoctorData(doctorList);
+ deptList.add(deptStatistics);
+ }
+ }
+ }
+ model.addAttribute("deptList",deptList);
+ return "vCountDir/doctorFileListIframe";
+ }
+}
+
+
diff --git a/src/main/java/com/emr/controller/beHospitaledController.java b/src/main/java/com/emr/controller/beHospitaledController.java
new file mode 100644
index 0000000..1cd79ff
--- /dev/null
+++ b/src/main/java/com/emr/controller/beHospitaledController.java
@@ -0,0 +1,279 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 14:38
+ * Description:出院浏览
+ */
+package com.emr.controller;
+
+import com.emr.dao.ArchiveFlowRoleMapper;
+import com.emr.entity.ArchiveFlowRole;
+import com.emr.entity.Archive_Master;
+import com.emr.entity.Archive_Master_Vo;
+import com.emr.entity.OffsetLimitPage;
+import com.emr.service.Archive_MasterService;
+import com.emr.service.ipml.ArchiveFlowInfoService;
+import com.emr.util.ExportExcelUtil;
+import com.emr.util.Msg;
+import com.emr.util.OracleConnect;
+import com.emr.vo.ArchiveFlowInfoVo;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.cxf.endpoint.Client;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Controller;
+import org.springframework.ui.Model;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.ResponseBody;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.text.SimpleDateFormat;
+import java.util.Date;
+import java.util.List;
+
+@Controller
+@RequestMapping("/beHosp")
+public class beHospitaledController {
+ @Autowired
+ private Archive_MasterService archiveMasterService;
+ @Value("${HomepageDictionary}")
+ private String HomepageDictionary;
+ @Value("${HomepageMethod}")
+ private String HomepageMethod;
+ @Autowired
+ private ArchiveFlowRoleMapper flowRoleMapper;
+ @Autowired
+ private ArchiveFlowInfoService flowInfoService;
+ @RequestMapping(value = "/beHosps")
+ public String inHospitals(){
+ return "beHospitaledDir/beHospList";
+ }
+
+ @RequestMapping("getChecker")
+ @ResponseBody
+ public Msg getChecker(){
+ Msg role = archiveMasterService.getRole();
+ return Msg.success().add("checker",role.getCode());
+ }
+ /**
+ * 搜索条件需要查询审核状态的时候异步查询该审核角色拥有的code集合
+ * @return
+ */
+ @RequestMapping("/getCurrentCodes")
+ @ResponseBody
+ public Msg getCurrentCodes(){
+ String result = "";
+ Integer roleIndex = 0;
+ Msg role = new Msg();
+ role = archiveMasterService.getRole();
+ String currentCodes = role.getMsg();
+ if(StringUtils.isNotBlank(currentCodes)){
+ //查询集合
+ //查询审核角色集合,根据有效进行计算状态code
+ List archiveFlowRoles = flowRoleMapper.selectAll();
+ //code转成id
+ String[] codes = currentCodes.split(",");
+ for(String code : codes){
+ if(StringUtils.isNotBlank(code)) {
+ for (ArchiveFlowRole flowRole : archiveFlowRoles) {
+ if (StringUtils.isNotBlank(flowRole.getCode()) && code.equals(flowRole.getCode())) {
+ result += flowRole.getId() + ",";
+ roleIndex = flowRole.getStepIndex();
+ break;
+ }
+ }
+ }
+ }
+ if(result.endsWith(",")){
+ result = result.substring(0,result.length()-1);
+ role.setMsg(result);
+ }
+
+ }
+ role.setCode(roleIndex);
+ return role;
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/beHospList")
+ public OffsetLimitPage beHospList(Archive_Master_Vo archiveMasterVo, Integer offset, Integer limit,Integer isSearch) {
+ //判断是否是初始化查询,是初始化查询把开始结束时间置空
+ if(isSearch == 0){
+ archiveMasterVo.setStartDateTo(null);
+ archiveMasterVo.setEndDateTo(null);
+ }
+ return archiveMasterService.selectByColumn(archiveMasterVo, offset, limit);
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/exportExcel")
+ public void exportExcel(HttpServletResponse response, Archive_Master_Vo archiveMasterVo,Integer isSearch) throws Exception {
+ String tableThNames = "住院号,住院次数,名字,性别,出院科室,出院日期,主管医生,状态";
+ String fieldCns = "inpNo,visitId,name,sex,deptName,dischargeDateTime,doctorInCharge,status";
+ //构造excel的数据
+ if(isSearch == 0){
+ archiveMasterVo.setStartDateTo(null);
+ archiveMasterVo.setEndDateTo(null);
+ }
+ List list = archiveMasterService.selectByColumn(archiveMasterVo);
+ //文件名
+ String fileName = "出院浏览" + new SimpleDateFormat("yyyyMMddHHmmss").format(new Date()) + ".xls";
+ //ExportExcelUtil
+ ExportExcelUtil exportExcelUtil = new ExportExcelUtil();
+ //导出excel的操作
+ exportExcelUtil.expordExcel(tableThNames,fieldCns,list,fileName,response);
+ }
+
+ /**
+ * 出院浏览提交审核
+ * @param master
+ * @return
+ */
+ @ResponseBody
+ @RequestMapping(value = "/updateStateByArchivId")
+ public Msg updateStateByArchivId(HttpServletRequest request,Archive_Master_Vo master) throws Exception{
+ boolean flag = FormTokenFlagUtil.isFlag(request);
+ if (!flag) {
+ return Msg.fail("请不要重复提交!");
+ }
+ return archiveMasterService.updateStateByArchivId(master);
+ }
+
+/*
+ @ResponseBody
+ @RequestMapping(value = "/updateStateByArchivId")
+ public String updateStateByArchivId(Emr_Fault_Detail emrFaultDetail) {
+ String result = "";
+ try{
+ //result = checkSuccessMethod(emrFaultDetail.getArchiveDetailId());
+ // 从session获取用户名
+ Subject currentUser = SecurityUtils.getSubject();
+ Session session = currentUser.getSession();
+ String username = (String) session.getAttribute("userSession");//获取前面登录的用户名
+ SimpleDateFormat format1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+ if(result.equals("完整")) {
+ //修改病案归档状态
+ Archive_Master archiveMaster = new Archive_Master();
+ archiveMaster.setId(emrFaultDetail.getArchiveDetailId());
+ archiveMaster.setArchivestate(emrFaultDetail.getState());
+ //设置审核时间
+ archiveMaster.setCheckDatetime(format1.format(new Date()));
+ //设置审核人
+ archiveMaster.setCheckDoctor(username);
+ archiveMaster.setLockinfo(result);
+ int bol = archiveMasterService.updateByClo(archiveMaster);
+
+ //添加初审内容
+ if (bol == 1) {
+ String nowTime = format1.format(new Date());
+
+ //参数输入
+ emrFaultDetail.setCreater(username);
+ emrFaultDetail.setCreateTime(nowTime);
+ emrFaultDetail.setState("未召回");
+ bol = emrFaultDetailService.insertSel(emrFaultDetail);
+ }
+ }else{
+ //修改病案归档完整内容Lockinfo
+ Archive_Master archiveMaster = new Archive_Master();
+ archiveMaster.setId(emrFaultDetail.getArchiveDetailId());
+ //设置审核时间
+ archiveMaster.setCheckDatetime(format1.format(new Date()));
+ //设置审核人
+ archiveMaster.setCheckDoctor(username);
+ archiveMaster.setLockinfo(result);
+ archiveMasterService.updateByClo(archiveMaster);
+ }
+ return result;
+ }catch (Exception e){
+ e.printStackTrace();
+ }
+ return result;
+ }
+*/
+ //校验完整性方法
+ //校验完整性
+ @ResponseBody
+ @RequestMapping(value = "/checkSuccess")
+ private String checkSuccessMethod(String archiveDetailId) throws Exception{
+ String result = "";
+ String endpoint = HomepageDictionary;
+ //String endpoint = "http://localhost:8080/ca3/services/caSynrochnized?wsdl";
+ String method = HomepageMethod;
+ JAXDynamicClientFactory factory = JAXDynamicClientFactory.newInstance();
+ Client client = factory.createClient(endpoint);
+ Object[] res = null;
+ res = client.invoke(method, archiveDetailId);
+ result = (String) res[0];
+ //更新master表完整性字段
+ if(StringUtils.isNotBlank(result)){
+ //更新表
+ Archive_Master master = new Archive_Master();
+ master.setId(archiveDetailId);
+ master.setLockinfo(result);
+ archiveMasterService.updateByClo(master);
+ }
+ return result;
+ }
+
+ /*@ResponseBody
+ @RequestMapping(value = "/forceWZ")
+ public String forceWZ(Emr_Fault_Detail emrFaultDetail) {
+ //修改病案归档状态
+ Archive_Master archiveMaster = new Archive_Master();
+ archiveMaster.setId(emrFaultDetail.getArchiveDetailId());
+ archiveMaster.setArchivestate("初审");
+ archiveMaster.setLockinfo(emrFaultDetail.getContent());
+ try{
+ int bol = archiveMasterService.updateByClo(archiveMaster);
+ // 从session获取用户名
+ Subject currentUser = SecurityUtils.getSubject();
+ Session session = currentUser.getSession();
+ String username = (String) session.getAttribute("userSession");//获取前面登录的用户名
+
+ SimpleDateFormat format1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+ String nowTime = format1.format(new Date());
+
+ //参数输入
+ emrFaultDetail.setCreater(username);
+ emrFaultDetail.setCreateTime(nowTime);
+ emrFaultDetail.setState("未召回");
+ bol = emrFaultDetailService.insertSel(emrFaultDetail);
+ }catch (Exception e){
+ e.printStackTrace();
+ }
+ return "1";
+ }*/
+
+ //出院初审先查询his是否医生护士全部提交
+ @RequestMapping("getInfoFromHis")
+ @ResponseBody
+ //@DataSource(dataSource = "dataSource1")
+ public int getInfoFromHis(String patientId) throws Exception{
+ String sql = "select fpatno from pacs.v_emrpatient where fpatno = '"+patientId+"'";
+ String str = OracleConnect.select(sql);
+ if(StringUtils.isNoneBlank(str)){
+ return 1;
+ }else{
+ return 0;
+ }
+ }
+
+ /**
+ * 查看流程跳转
+ * @param master
+ * @param model
+ * @return
+ */
+ @RequestMapping("toShowFlowInfo")
+ private String toShowFlowInfo(Archive_Master_Vo master,Model model){
+ model.addAttribute("master",master);
+ //查询流程信息集合
+ List list = flowInfoService.selectFlowInfoByMasterId(master.getId());
+ model.addAttribute("list",list);
+ return "beHospitaledDir/timeLine";
+ }
+}
+
+
diff --git a/src/main/java/com/emr/controller/faultController.java b/src/main/java/com/emr/controller/faultController.java
new file mode 100644
index 0000000..db4972d
--- /dev/null
+++ b/src/main/java/com/emr/controller/faultController.java
@@ -0,0 +1,64 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 14:39
+ * Description:缺陷管理
+ */
+package com.emr.controller;
+
+import com.emr.entity.*;
+import com.emr.service.Emr_Fault_DetailService;
+import com.emr.util.ExportExcelUtil;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Controller;
+import org.springframework.ui.Model;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.ResponseBody;
+
+import javax.servlet.http.HttpServletResponse;
+import java.text.SimpleDateFormat;
+import java.util.Date;
+import java.util.List;
+
+@Controller
+@RequestMapping("fault")
+public class faultController {
+ @Autowired
+ private Emr_Fault_DetailService emrFaultDetailService;
+ @RequestMapping(value = "/faults")
+ public String faults(){
+ return "faultDir/faultList";
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/faultList")
+ public OffsetLimitPage faultList(Integer isSearch, Emr_Fault_Vo emrFaultVo, Integer offset, Integer limit) {
+ //判断是否是初始化查询,是初始化查询把开始结束时间置空
+ if(isSearch == 0){
+ emrFaultVo.setStartDate(null);
+ emrFaultVo.setEndDate(null);
+ }
+ return emrFaultDetailService.selectByCol(emrFaultVo,offset, limit);
+ }
+ @ResponseBody
+ @RequestMapping(value = "/exportExcel")
+ public void exportExcel(HttpServletResponse response, Emr_Fault_Vo emrFaultVo,Integer isSearch) throws Exception{
+ String tableThNames = "住院号,住院次数,姓名,出院科室,出院日期,归档状态,评分,回退内容,缺陷选项,缺陷内容,创建时间,创建人";
+ String fieldCns = "inpNo,visitId,name,deptName,dischargeDateTime,archivestate,score,backContent,assortId,content,createTime,creater";
+ //构造excel的数据
+ //判断是否是初始化查询,是初始化查询把开始结束时间置空
+ if(isSearch == 0){
+ emrFaultVo.setStartDate(null);
+ emrFaultVo.setEndDate(null);
+ }
+ List list = emrFaultDetailService.selectByCol(emrFaultVo);
+ //文件名
+ String fileName = "缺陷信息数据" + new SimpleDateFormat("yyyyMMddHHmmss").format(new Date()) + ".xls";
+ //ExportExcelUtil
+ ExportExcelUtil exportExcelUtil = new ExportExcelUtil();
+ //导出excel的操作
+ exportExcelUtil.expordExcel(tableThNames, fieldCns, list, fileName, response);
+ }
+}
+
+
diff --git a/src/main/java/com/emr/controller/faultTypeController.java b/src/main/java/com/emr/controller/faultTypeController.java
new file mode 100644
index 0000000..45f69c7
--- /dev/null
+++ b/src/main/java/com/emr/controller/faultTypeController.java
@@ -0,0 +1,66 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 15:32
+ * Description:缺陷分类
+ */
+package com.emr.controller;
+
+import com.emr.entity.Emr_Fault_Type;
+import com.emr.service.Emr_Fault_TypeService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.ResponseBody;
+
+import java.util.List;
+
+@Controller
+@RequestMapping("/faultType")
+public class faultTypeController {
+ @Autowired
+ private Emr_Fault_TypeService emrFaultTypeService;
+
+ @RequestMapping(value = "/faultTypes")
+ public String faultTypes() {
+ return "faultTypeDir/faultTypeList";
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/faultTypeList")
+ public List faultTypeList(Emr_Fault_Type emrFaultType) {
+ return emrFaultTypeService.selectByCol(emrFaultType);
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/updateByClo")
+ public int updateByClo(Emr_Fault_Type emrFaultType) {
+ int bol=0;
+ //判断id是否存在
+ if(emrFaultType.getId()!=null){
+ //判断是否存在记录
+ if (emrFaultTypeService.selectById(emrFaultType.getId()) != null) {
+ bol = emrFaultTypeService.updateByClo(emrFaultType);
+ }
+ }else{
+ //不存在则添加缺陷类别记录
+ bol= emrFaultTypeService.insertClo(emrFaultType);
+ }
+ return bol;
+ }
+
+
+ @ResponseBody
+ @RequestMapping(value = "/delById")
+ public int delById(Integer id) {
+ int bol = 0;
+ //判断id是否存在
+ if (id!= null) {
+ //判断是否存在记录
+ bol = emrFaultTypeService.delById(id);
+ }
+ return bol;
+ }
+}
+
+
diff --git a/src/main/java/com/emr/controller/inHospitalController.java b/src/main/java/com/emr/controller/inHospitalController.java
new file mode 100644
index 0000000..7971375
--- /dev/null
+++ b/src/main/java/com/emr/controller/inHospitalController.java
@@ -0,0 +1,898 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 14:39
+ * Description:在院浏览
+ */
+package com.emr.controller;
+
+import com.emr.entity.*;
+import com.emr.service.Archive_DetailService;
+import com.emr.service.Archive_MasterService;
+import com.emr.service.Emr_DictionaryService;
+import com.emr.service.Emr_PictureService;
+import com.emr.service.ipml.ZdAssortService;
+import com.emr.util.ExportExcelUtil;
+import com.emr.util.Jpg2PdfUtil;
+import com.emr.util.PrintToPdfUtil;
+import net.sf.json.JSONArray;
+import net.sf.json.JSONObject;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.shiro.SecurityUtils;
+import org.apache.shiro.session.Session;
+import org.apache.shiro.subject.Subject;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.*;
+import org.springframework.web.multipart.MultipartFile;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.io.File;
+import java.io.IOException;
+import java.text.SimpleDateFormat;
+import java.util.ArrayList;
+import java.util.Date;
+import java.util.List;
+
+
+@Controller
+@RequestMapping("/inHosp")
+public class inHospitalController {
+ //private Logger logger = Logger.getLogger(inHospitalController.class);
+ @Value("${pdfWater}")
+ private String pdfWater;
+ @Value("${nurseAssortIds}")
+ private String NURSEASSORTIDS;
+ @Autowired
+ private Archive_MasterService archiveMasterService;
+
+ @Autowired
+ private Emr_DictionaryService emrDictionaryService;
+
+ @Autowired
+ private Archive_DetailService archiveDetailService;
+
+ @Autowired
+ private Emr_PictureService emrPictureService;
+
+ @Autowired
+ private ZdAssortService zdAssortService;
+
+ @Value("${pictureUrl}")
+ private String pictureUrl;
+
+ @Value("${picSrc}")
+ private String picSrc;
+
+ @RequestMapping(value = "/inHospitals")
+ public String inHospitals() {
+ return "inHospitalDir/inHositalList";
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/inHospitalList")
+ public OffsetLimitPage inHospitalList(Integer isSearch, Archive_Master_Vo archiveMasterVo, Integer offset, Integer limit) {
+ //判断是否是初始化查询,是初始化查询把开始结束时间置空
+ if(isSearch == 0){
+ archiveMasterVo.setStartDateTo(null);
+ archiveMasterVo.setEndDateTo(null);
+ }
+ return archiveMasterService.selectByCol(archiveMasterVo, offset, limit);
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/exportExcel")
+ public void exportExcel(HttpServletResponse response, Archive_Master_Vo archiveMasterVo,Integer isSearch) throws Exception {
+ String tableThNames = "住院号,住院次数,姓名,性别,入院科室,入院日期,主管医生,状态";
+ String fieldCns = "inpNo,visitId,name,sex,deptAdmissionTo,admissionDateTime,doctorInCharge,archivestate";
+ //构造excel的数据
+ //判断是否是初始化查询,是初始化查询把开始结束时间置空
+ if(isSearch == 0){
+ archiveMasterVo.setStartDateTo(null);
+ archiveMasterVo.setEndDateTo(null);
+ }
+ List list = archiveMasterService.selectByCol(archiveMasterVo);
+
+ //文件名
+ String fileName = "在院浏览" + new SimpleDateFormat("yyyyMMddHHmmss").format(new Date()) + ".xls";
+ //ExportExcelUtil
+ ExportExcelUtil exportExcelUtil = new ExportExcelUtil();
+ response.setContentType("application/ms-excel;charset=gbk");
+ //导出excel的操作
+ exportExcelUtil.expordExcel(tableThNames, fieldCns, list, fileName, response);
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/getDept")
+ public List getDept(Emr_Dictionary emrDictionary){
+ emrDictionary.setEffective(1);
+ emrDictionary.setTypecode("dept_code");
+ return emrDictionaryService.dicByTypeCode(emrDictionary);
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/getAssort")
+ public List getAssort(Archive_Detail_Vo archiveDetailVo){
+ //分段列表
+ //checker 当前角色为护士2,从配置的护士分类查询
+ Integer checker = archiveDetailVo.getChecker();
+ if(null != checker && checker == 2){
+ archiveDetailVo.setAssortid(NURSEASSORTIDS);
+ }
+ return archiveDetailService.selectByClo(archiveDetailVo);
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/getZdAssort")
+ public List getZdAssort(){
+ //分段列表
+ Zd_Assort assort = new Zd_Assort();
+ assort.setPrintFlag("0");
+ return zdAssortService.selectAll(assort);
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/getAssortdetail")
+ public OffsetLimitPage getAssortdetail(Archive_Detail_Vo archiveDetailVo, Integer offset, Integer limit){
+ //分段详情列表分页
+ Integer checker = archiveDetailVo.getChecker();
+ if(null != checker && checker == 2){
+ archiveDetailVo.setAssortName(NURSEASSORTIDS);
+ }
+ return archiveDetailService.detailByClo(archiveDetailVo, offset, limit);
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/updateState")
+ public int updateState(HttpServletRequest request,HttpServletResponse response, Archive_Detail archiveDetail) throws Exception{
+ request.setCharacterEncoding("utf-8");
+ response.setCharacterEncoding("utf-8");
+ archiveDetail.setFlag("1");
+ //修改状态分段信息
+ return archiveDetailService.updateCloById(archiveDetail);
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/updateStateAll")
+ public int updateStateAll(HttpServletRequest request,HttpServletResponse response, Archive_Detail archiveDetail) throws Exception {
+ request.setCharacterEncoding("utf-8");
+ response.setCharacterEncoding("utf-8");
+ int bol=0;
+ String idStr=archiveDetail.getId();
+ if(idStr.length()>0){
+ String[] idArr = idStr.split(",");
+ //archiveDetail.setFlag("1");
+ for(int i=0;i 0) {
+ for (int i = 0; i < imgArr.length; i++) {
+ imgList.add(imgArr[i]);
+ }
+ }
+ }
+
+// if(imgList.size()==1){
+// result= masterId.trim() + "/"+ imgList.get(0) +"/"+ imgList.get(0)+".pdf";
+// }else{
+ String pdfPath = realPath+"pdfFiles\\" + "typesPdf\\"+ pdfFileName + ".pdf";
+ String imgPath= realPath + "pdfFiles\\"+masterId.trim()+"\\";
+ //获取废除的pdf文件名列表archive_detail
+ List pdfList=new ArrayList();
+ Archive_Detail archiveDetail = new Archive_Detail();
+ archiveDetail.setFlag("0");
+ archiveDetail.setMasterid(masterId.trim());
+ archiveDetail.setTitle(imgStr);
+ List arList=archiveDetailService.selectByCol(archiveDetail);
+ if(arList!=null) {
+ for (int m = 0; m < arList.size(); m++) {
+ String str = arList.get(m).getPdfPath();
+ if (str.indexOf("..\\static\\img\\pdfFiles\\") != -1) {
+ str = str.split("pdfFiles")[1];
+ str = realPath + "pdfFiles" + str;
+ }
+ // str= str.substring(str.lastIndexOf("\\") + 1);
+ pdfList.add(str);
+ }
+ }
+
+ //PrintToPdfUtil.pdtToPdf(imgPath,pdfPath, imgList,pdfList);
+ PDFUtils.getPdf(pdfPath, pdfList);
+ result = "typesPdf/"+pdfFileName + ".pdf";
+// }
+ } else {
+ result = "a000000.pdf";
+ }
+ return result;
+ }
+*/
+
+ /**
+ * 根据病案号或类别或图片id获取图片列表,并生成PDF并返回pdf文件名
+ * @param response
+ * @param request
+ * @param imgStr
+ * @param masterId
+ * @return
+ * @throws Exception
+ */
+ @ResponseBody
+ @RequestMapping(value = "/getPdf")
+ public String getPdf(HttpServletResponse response, HttpServletRequest request,String imgStr, String masterId) throws Exception {
+ request.setCharacterEncoding("utf-8");
+ response.setCharacterEncoding("utf-8");
+ String result="";
+ // 项目在容器中实际发布运行的根路径
+ String realPath = request.getSession().getServletContext().getRealPath("/");
+ //pdf名称
+ String pdfFile = String.valueOf(System.currentTimeMillis());
+ String pdfPath = pictureUrl + "\\" + pdfFile + ".pdf";
+ //病案号文件夹
+ if(StringUtils.isNotBlank(masterId)){
+ realPath = realPath+ masterId+"\\";
+ //判断文件夹是否存在
+ File fileDic = new File(realPath );
+ if (!fileDic.exists() && !fileDic.isDirectory()) {
+ fileDic.mkdirs();
+ }
+ //病案号/类别/id文件夹(图片路径下的子文件夹名称)
+ //生成pdf(图片路径,pdf生成路径,图片路径文件夹列表)
+ List imgList=new ArrayList();
+ if(StringUtils.isNotBlank(imgStr)) {
+ String[] imgArr = imgStr.split(",");
+ if (imgArr.length > 0) {
+ for (int i = 0; i < imgArr.length; i++) {
+ imgList.add(imgArr[i]);
+ }
+ }
+ }
+ //imgList.add(imgStr.split())imgStr.split(","));
+ PrintToPdfUtil.toPdf(realPath, pdfPath, imgList);
+ result= pdfFile + ".pdf";
+ }else{
+ result="a000000.pdf";
+ }
+ return result;
+ }
+
+ /**
+ * 根据病案号或类别或图片id获取图片列表,并生成PDF并返回pdf文件名
+ *
+ * @param response
+ * @param request
+ * @param idStr *
+ * @return
+ * @throws Exception
+ */
+ @ResponseBody
+ @RequestMapping(value = "/getPdfById/{idStr}")
+ public void getPdfById(HttpServletResponse response, HttpServletRequest request, @PathVariable("idStr") String idStr) throws Exception {
+ Archive_Detail detail=new Archive_Detail();
+ detail.setTitle(idStr);
+ //根据所有id获取PDF列表
+ List arList = archiveDetailService.selectByIdStr(detail);
+ //获取废除的pdf文件名列表archive_detail
+ List pdfList = new ArrayList();
+ //将所有记录的pdf数组里面\static\img\pdfFiles\typesPdf
+ if(arList!=null && arList.size()>0){
+ for(int m=0;m arList = archiveDetailService.selectByIdStr(detail);
+ //获取废除的pdf文件名列表archive_detail
+ List pdfList = new ArrayList();
+ //将所有记录的pdf数组里面\static\img\pdfFiles\typesPdf
+ if(arList!=null && arList.size()>0){
+ for(int m=0;m getPicList(HttpServletResponse response, Emr_Picture emrPicture){
+ return emrPictureService.selectByClo(emrPicture);
+ }
+
+
+
+ /**
+ * 批量图片上传
+ *
+ * @param resp
+ * @param request
+ * @param
+ * @return
+ * @throws IOException
+ */
+ @ResponseBody
+ @RequestMapping(value = "/uploadImgS", method = RequestMethod.POST)
+ public String uploadImgS(HttpServletResponse resp, HttpServletRequest request, @RequestParam MultipartFile[] imgs) throws Exception {
+ resp.setContentType("text/json");
+ resp.setCharacterEncoding("utf-8");
+ request.setCharacterEncoding("utf-8");
+ String firstFile =request.getParameter("fileName");
+ String list = request.getParameter("list");
+ String masterId = request.getParameter("masterID");
+ int t = 0;
+ JSONArray fileObj = JSONArray.fromObject(list);
+ String result = "";
+ if (StringUtils.isNotBlank(masterId)) {
+ // 项目在容器中实际发布运行的根路径
+ // 设置存放图片文件的路径
+ String path2 = "img\\";
+ //病案号
+ if (StringUtils.isNotBlank(masterId)) {
+ path2 += masterId + "\\";
+ }
+ // 从session获取用户名
+ Subject currentUser = SecurityUtils.getSubject();
+ Session session = currentUser.getSession();
+ String username = (String) session.getAttribute("userSession");//获取前面登录的用户名
+ //类循环
+ if (fileObj != null && fileObj.size() > 0) {
+ for (int x = 0; x < fileObj.size(); x++) {
+ JSONObject obj = fileObj.getJSONObject(x);
+ //类别
+ String pathType = "";
+ if (obj.get("selectVal") != null && obj.get("selectVal") != "") {
+ pathType = obj.get("selectVal") + "\\";
+ //判断文件夹是否存在
+ File fileDic = new File(pictureUrl+path2 + pathType);
+ if (!fileDic.exists() && !fileDic.isDirectory()) {
+ fileDic.mkdirs();
+ }
+ SimpleDateFormat format1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+ String nowTime = format1.format(new Date());
+ //创建时间id
+ String idTime = String.valueOf(System.currentTimeMillis());
+ String trueFileName ="";
+ //将其路径及文件名类型以及参数保存图片相关信息到分段详细表
+ Emr_Picture entity = new Emr_Picture();
+ entity.setRelationId(masterId);
+ entity.setAssortId(obj.get("selectVal").toString());
+ entity.setUpdateTime(nowTime);
+ entity.setUpdater(username);
+ int bol = 0;
+ String id= obj.get("id").toString();
+ if (StringUtils.isNotBlank(id) && !"-1".equals(id)) {
+ Emr_Picture picList = emrPictureService.selectByid(id);
+ //判断记录是否已经存在
+ if (picList!=null) {
+ entity.setId(id);
+ //图片是否有改动有改动则删除之前重新上传
+ if(!picList.getAssortId().equals(entity.getAssortId()) || !picList.getRelationId().equals(entity.getRelationId())){
+ if(!picList.getMaxPicture().contains(path2 + pathType)){
+ // 移动图片
+ String startPath= picList.getMaxPicture();
+ startPath = startPath.substring(startPath.indexOf("\\"), startPath.length());
+ String endPath= pictureUrl + path2 + pathType;
+ PrintToPdfUtil.moveTotherFolders(pictureUrl + startPath, endPath);
+ String[] oldName= picList.getMaxPicture().split("\\\\");
+ //新的图片地址
+ entity.setMaxPicture(picSrc + path2 + pathType + oldName[oldName.length - 1]);
+ }
+ //被修改的类别重新生成pdf,查询出pdf记录
+ //根据病案号和类别查询是否存在
+ Archive_Detail detail = new Archive_Detail();
+ detail.setMasterid(masterId);
+ detail.setAssortid(picList.getAssortId());
+ List detailList = archiveDetailService.selectByColm(detail);
+ //判断pdf是否存在,将之前文件删除
+ File file1 = new File(detailList.get(0).getPdfPath());
+ if (file1.exists() && file1.isFile()) {
+ file1.delete();
+ }
+ //读取指定路径下的文件名和目录名
+ List arr = new ArrayList();
+ arr.add(picList.getAssortId());
+ //图片转PDF(病案号文件夹+类别文件夹)
+ PrintToPdfUtil.toPdf(pictureUrl + path2 + picList.getAssortId(), detailList.get(0).getPdfPath(), arr);
+ //判断pdf文件大小等于了则删除,并删除pdf记录
+ File file = new File(detailList.get(0).getPdfPath());
+ if (file.exists() && file.isFile()) {
+ if(file.length()==0){
+ String pdfPathVal = pictureUrl + "\\pdfFiles\\"+ detail.getMasterid() +"\\"+ picList.getAssortId() + "\\" + picList.getAssortId() + ".pdf";
+ detail.setPdfPath(pdfPathVal);
+ archiveDetailService.deleteByClo(detail);
+ file.delete();
+ detail.setPdfPath("");
+ }
+ }
+ //根据id修改记录
+ bol = emrPictureService.updateCloByIdOrFlay(entity);
+ //}
+ if (bol == 1) {
+ result = "批量上传成功!";
+ } else {
+ result = "批量上传失败!";
+ }
+ }
+ } else {
+ //得到图片名
+ String oldName = imgs[t].getOriginalFilename();// 如apple1.jpg
+ String lasName = oldName.substring(oldName.lastIndexOf(".") + 1);
+ if ("GIF".equals(lasName.toUpperCase()) || "JPEG".equals(lasName.toUpperCase()) || "PNG".equals(lasName.toUpperCase()) || "JPG".equals(lasName.toUpperCase())) {
+ // 自定义的文件名称String.valueOf(System.currentTimeMillis())
+ trueFileName = firstFile + idTime + oldName;
+ //上传图片
+ imgs[t].transferTo(new File( pictureUrl+path2 + pathType + trueFileName));
+ entity.setId(idTime);
+ entity.setCreater(username);
+ entity.setCreateTime(nowTime);
+ entity.setEffective(1);
+ entity.setMaxPicture(picSrc + path2 + pathType + trueFileName);
+ //插入记录
+ bol = emrPictureService.insertSel(entity);
+ }
+ t++;
+ }
+ } else {
+ //得到图片名
+ String oldName = imgs[t].getOriginalFilename();// 如apple1.jpg
+ String lasName= null;
+ if (oldName != null) {
+ lasName = oldName.substring(oldName.lastIndexOf(".") + 1);
+ }
+ if (lasName != null && ("GIF".equals(lasName.toUpperCase()) || "JPEG".equals(lasName.toUpperCase()) || "PNG".equals(lasName.toUpperCase()) || "JPG".equals(lasName.toUpperCase()))) {
+ // 自定义的文件名称String.valueOf(System.currentTimeMillis())
+ trueFileName = firstFile + idTime + oldName;
+ //上传图片
+ imgs[t].transferTo(new File(pictureUrl + path2 + pathType + trueFileName));
+ //新的图片地址
+ entity.setMaxPicture(picSrc + path2 + pathType + trueFileName);
+ entity.setId(idTime);
+ entity.setCreater(username);
+ entity.setCreateTime(nowTime);
+ entity.setEffective(1);
+ //插入记录
+ bol = emrPictureService.insertSel(entity);
+ }
+ t = t + 1;
+ }
+ //根据类别生成pdf:pathType(String.valueOf(System.currentTimeMillis()) )
+ String pdfFile = pathType.replace("\\", "") + ".pdf";
+ //根据病案号和类别查询是否存在
+ Archive_Detail detail = new Archive_Detail();
+ detail.setMasterid(masterId);
+ detail.setAssortid(pathType.replace("\\",""));
+ detail.setPdfPath(pictureUrl + "\\pdfFiles\\" + masterId + "\\"+ pathType.replace("\\", "")+"\\" + pathType.replace("\\", ".pdf"));
+ List voList=archiveDetailService.selectByColm(detail);
+ //pdf存在则删除记录和文件
+ if(voList.size()<=0){
+ //不存在添加记录和转换pdf
+ detail.setFlag("0");//显示
+ detail.setSource("后台");
+ detail.setSys("emr_medical_record");
+ detail.setUploaddatetime(nowTime);
+ detail.setPdfPath(pictureUrl + "\\pdfFiles\\" + masterId + "\\" + pathType + pdfFile);
+ int b = archiveDetailService.insertSel(detail);
+ }
+ //判断pdf是否存在,将之前文件删除
+ File file1 = new File(pictureUrl + "\\pdfFiles\\" + masterId + "\\" + pathType + pdfFile);
+ if (file1.exists() && file1.isFile()) {
+ file1.delete();
+ }
+ //读取指定路径下的文件名和目录名
+ List arr = new ArrayList();
+ arr.add(pathType.replace("\\", ""));
+ //图片转PDF(病案号文件夹+类别文件夹)
+ PrintToPdfUtil.toPdf(pictureUrl + path2 + pathType, pictureUrl + "\\pdfFiles\\" + masterId + "\\" + pathType + pdfFile, arr);
+ result = "批量上传成功!";
+ } else {
+ result = "没有找到相对应的文件!";
+ }
+ }
+ }
+ }
+ return result;
+ }
+
+ /**
+ * 图片上传
+ * @param resp
+ * @param request
+ * @param file
+
+ * @return
+ * @throws IOException
+ */
+ @ResponseBody
+ @RequestMapping(value = "/uploadImg", method = RequestMethod.POST)
+ public String uploadImg(HttpServletResponse resp, HttpServletRequest request, @RequestParam(value = "file", required = false) MultipartFile file) throws IOException {
+ resp.setContentType("text/json");
+ resp.setCharacterEncoding("utf-8");
+ request.setCharacterEncoding("utf-8");
+ String firstFile = request.getParameter("fileName");
+ String id = request.getParameter("id");
+ String masterId = request.getParameter("masterID");
+ String assortId = request.getParameter("assortID");
+ String result = "";
+ if (!file.isEmpty()) {
+ // logger.info("成功获取照片");
+ String fileName = file.getOriginalFilename();
+ String path = null;
+ String type = null;
+ if (fileName != null) {
+ type = fileName.contains(".") ? fileName.substring(fileName.lastIndexOf(".") + 1, fileName.length()) : null;
+ }
+ //logger.info("图片初始名称为:" + fileName + " 类型为:" + type);
+ if (type != null) {
+ if ("GIF".equals(type.toUpperCase()) || "JPEG".equals(type.toUpperCase())|| "PNG".equals(type.toUpperCase()) || "JPG".equals(type.toUpperCase())) {
+ // 项目在容器中实际发布运行的根路径
+ String realPath = request.getSession().getServletContext().getRealPath("/");
+ realPath = realPath.split("target")[0] + pictureUrl;
+
+ //创建时间id
+ String idTime = String.valueOf(System.currentTimeMillis());
+ // 自定义的文件名称String.valueOf(System.currentTimeMillis())
+ String trueFileName = firstFile+ idTime + fileName.split(".")[1];
+ // 设置存放图片文件的路径
+ String path2 = "\\static\\img\\uploads\\" ;
+
+ //病案号
+ if (StringUtils.isNotBlank(masterId)) {
+ path2= path2+masterId + "\\";
+ }
+ //类别
+ if(StringUtils.isNotBlank(assortId)){
+ path2= path2+ assortId+"\\";
+ }
+ //图片id
+ if (id != null && id != "") {
+ path2 = path2 + id + "\\";
+ }else{
+ path2 = path2 + idTime + "\\";
+ }
+ //判断文件夹是否存在
+ File fileDic = new File(realPath +path2);
+ if (!fileDic.exists() && !fileDic.isDirectory()){
+ fileDic.mkdirs();
+ }
+ path= realPath + path2 + trueFileName;
+ SimpleDateFormat format1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+ String nowTime = format1.format(new Date());
+ //将其路径及文件名类型以及参数保存图片相关信息到分段详细表
+ Emr_Picture entity = new Emr_Picture();
+ entity.setRelationId(masterId);
+ entity.setAssortId(assortId);
+ entity.setUpdateTime(nowTime);
+ entity.setMaxPicture(".."+ path2 + trueFileName);
+ // 从session获取用户名
+ Subject currentUser = SecurityUtils.getSubject();
+ Session session = currentUser.getSession();
+ String username = (String) session.getAttribute("userSession");//获取前面登录的用户名
+ entity.setUpdater(username);
+ int bol = 0;
+ if (StringUtils.isNotBlank(id)) {
+ Emr_Picture pic = new Emr_Picture();
+ pic.setTypeFlag(id);
+ List list = emrPictureService.selectByClo(pic);
+ entity.setTypeFlag(id);
+ if(list.size()>0){
+ //将之前文件删除
+ File file1 = new File(realPath + "/static" + list.get(0).getMaxPicture().split("static")[1]);
+ if (file1.exists() && file1.isFile()) {
+ file1.delete();
+ }
+ //根据id修改记录
+ bol = emrPictureService.updateCloByIdOrFlay(entity);
+ }else{
+ entity.setId(idTime);
+ entity.setCreater(username);
+ entity.setCreateTime(nowTime);
+ entity.setEffective(1);
+ //插入记录
+ bol = emrPictureService.insertSel(entity);
+ }
+ } else {
+ entity.setId(idTime);
+ entity.setCreater(username);
+ entity.setCreateTime(nowTime);
+ entity.setEffective(1);
+ //插入记录
+ bol = emrPictureService.insertSel(entity);
+ }
+ if (bol == 1) {
+ //文件成功上传到指定目录下
+ file.transferTo(new File(path));
+ result = entity.getMaxPicture();
+ } else {
+ result = "保存文件信息失败!";
+ }
+ } else {
+ result = "文件类型有误,请重新上传!";
+ }
+ } else {
+ result = "文件类型为空!";
+ }
+ } else {
+ result = "没有找到相对应的文件!";
+ }
+ return result;
+ }
+
+ /**
+ * Pdf上传
+ *
+ * @param resp
+ * @param request
+ * @param file
+ * @return
+ * @throws IOException
+ */
+ @RequestMapping(value = "/uploadPdf", method = RequestMethod.POST)
+ public String uploadPdf(HttpServletResponse resp, HttpServletRequest request, @RequestParam(value = "file", required = false) MultipartFile file) throws IOException {
+ resp.setContentType("text/json");
+ resp.setCharacterEncoding("utf-8");
+ request.setCharacterEncoding("utf-8");
+ String firstFile = request.getParameter("fileName");
+ String id = request.getParameter("id");
+ String masterId = request.getParameter("masterID");
+ String assortId = request.getParameter("assortID");
+ String result = "";
+ if (!file.isEmpty()) {
+ // 成功获取照片原名字
+ String fileName = file.getOriginalFilename();
+ String path = null;
+ String type = null;
+ if (fileName != null) {
+ type = fileName.contains(".") ? fileName.substring(fileName.lastIndexOf(".") + 1, fileName.length()) : null;
+ }
+ //logger.info("图片初始名称为:" + fileName + " 类型为:" + type);
+ if (type != null) {
+ if ("PDF".equals(type.toUpperCase())) {
+ // 项目在容器中实际发布运行的根路径
+ String realPath = request.getSession().getServletContext().getRealPath("/");
+ realPath = realPath.split("target")[0] + pictureUrl;
+ // 自定义的文件名称String.valueOf(System.currentTimeMillis())
+ String trueFileName = firstFile + fileName;
+ // 设置存放图片文件的路径
+ path = realPath + "\\static\\img\\uploads\\" + trueFileName;
+
+ SimpleDateFormat format1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+ String nowTime = format1.format(new Date());
+ //将其路径及文件名类型以及参数保存图片相关信息到分段详细表
+ Archive_Detail entity = new Archive_Detail();
+ entity.setMasterid(masterId);
+ entity.setAssortid(assortId);
+ entity.setUploaddatetime(nowTime);
+
+ entity.setPdfPath("../static/img/uploads/" + trueFileName);
+ Archive_Detail detail = new Archive_Detail();
+ int bol = 0;
+ if (StringUtils.isNotBlank(id)) {
+ entity.setId(id);
+ detail = archiveDetailService.selectByid(id);
+ if (detail != null) {
+
+ //根据id修改记录
+ bol = archiveDetailService.updateCloById(entity);
+ }
+ } else {
+ //插入记录
+ bol = archiveDetailService.insertSel(entity);
+ }
+ if (bol == 1) {
+ //将之前文件删除
+ File file1 = new File(realPath + "/static/uploads/" + detail.getPdfPath().split("/")[3]);
+ if (file1.exists() && file1.isFile()) {
+ file1.delete();
+ }
+ file.transferTo(new File(path));
+ //文件成功上传到指定目录下
+ result = entity.toString();
+ } else {
+ result = "保存文件信息失败!";
+ }
+ } else {
+ result = "文件类型有误,请重新上传!";
+ }
+ } else {
+ result = "文件类型为空!";
+ }
+ } else {
+ result = "没有找到相对应的文件!";
+ }
+ return result;
+ }
+}
+
+
diff --git a/src/main/java/com/emr/controller/lastVerifyController.java b/src/main/java/com/emr/controller/lastVerifyController.java
new file mode 100644
index 0000000..07551c3
--- /dev/null
+++ b/src/main/java/com/emr/controller/lastVerifyController.java
@@ -0,0 +1,159 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/8/8 12:46
+ * Description:
+ */
+package com.emr.controller;
+
+import com.emr.entity.*;
+import com.emr.service.Archive_MasterService;
+import com.emr.service.Emr_Fault_DetailService;
+import com.emr.service.Emr_Fault_TypeService;
+import com.emr.util.ExportExcelUtil;
+import com.emr.util.Msg;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Controller;
+import org.springframework.ui.Model;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.ResponseBody;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.text.SimpleDateFormat;
+import java.util.Date;
+import java.util.List;
+@Controller
+@RequestMapping("lastVerify")
+public class lastVerifyController {
+ @Autowired
+ private Archive_MasterService archiveMasterService;
+
+ @Autowired
+ private Emr_Fault_TypeService emrFaultTypeService;
+
+ @Autowired
+ private Emr_Fault_DetailService emrFaultDetailService;
+
+ @RequestMapping(value = "/lastVerifys")
+ public String faults(Model model){
+ return "lastVerifyDir/lastVerifyList";
+ }
+
+
+ /**
+ * 终审列表
+ * */
+ @ResponseBody
+ @RequestMapping(value = "/lastVerifyList")
+ public OffsetLimitPage lastVerifyList(Archive_Master_Vo archiveMasterVo, Integer offset, Integer limit,Integer isSearch) {
+ //判断是否是初始化查询,是初始化查询把开始结束时间置空
+ if(isSearch == 0){
+ archiveMasterVo.setStartDateTo(null);
+ archiveMasterVo.setEndDateTo(null);
+ }
+ OffsetLimitPage result = archiveMasterService.selectByLast(archiveMasterVo, offset, limit);
+ return result;
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/exportExcel")
+ public void exportExcel(HttpServletResponse response, Archive_Master_Vo archiveMasterVo,Integer isSearch) throws Exception {
+ //判断是否是初始化查询,是初始化查询把开始结束时间置空
+ if(isSearch == 0){
+ archiveMasterVo.setStartDateTo(null);
+ archiveMasterVo.setEndDateTo(null);
+ }
+ String tableThNames = "住院号,住院次数,名字,性别,出院科室,出院日期,主管医生,状态";
+ String fieldCns = "inpNo,visitId,name,sex,deptName,dischargeDateTime,doctorInCharge,status";
+ //构造excel的数据
+ List list = archiveMasterService.selectLastVerifyList(archiveMasterVo);
+
+ //文件名
+ String fileName = "病案室终审" + new SimpleDateFormat("yyyyMMddHHmmss").format(new Date()) + ".xls";
+ //ExportExcelUtil
+ ExportExcelUtil exportExcelUtil = new ExportExcelUtil();
+ response.setContentType("application/ms-excel;charset=gbk");
+ //导出excel的操作
+ exportExcelUtil.expordExcel(tableThNames, fieldCns, list, fileName, response);
+ }
+
+
+ @ResponseBody
+ @RequestMapping(value = "/getFaultType")
+ public List getFaultType(Emr_Fault_Type emrFaultType) {
+ return emrFaultTypeService.selectByCol(emrFaultType);
+ }
+
+
+ @ResponseBody
+ @RequestMapping(value = "/getDetailByArchId")
+ public Emr_Fault_Detail getDetailByArchId(Emr_Fault_Detail emrFaultDetail) {
+ return emrFaultDetailService.selectByArchiveDetailId(emrFaultDetail);
+ }
+
+ /**
+ * 退回提交方法
+ * @param request
+ * @param emrFaultDetail
+ * @return
+ * @throws Exception
+ */
+ @ResponseBody
+ @RequestMapping(value = "/updateDetailByArchivId")
+ public Msg updateDetailByArchivId(HttpServletRequest request,Emr_Fault_Detail_Vo emrFaultDetail) throws Exception{
+ boolean flag = FormTokenFlagUtil.isFlag(request);
+ if (!flag) {
+ return Msg.fail("请不要重复提交!");
+ }
+ archiveMasterService.updateReturn(emrFaultDetail);
+ return Msg.success();
+ }
+
+/*
+ @ResponseBody
+ @RequestMapping(value = "/updateDetailByArchivId")
+ public int updateDetailByArchivId(HttpServletRequest request, HttpServletResponse response, Emr_Fault_Detail emrFaultDetail) {
+
+ //修改病案归档状态:复审退回
+ Archive_Master archiveMaster = new Archive_Master();
+ archiveMaster.setId(emrFaultDetail.getArchiveDetailId());
+ archiveMaster.setArchivestate("复审退回");
+ int bol = archiveMasterService.updateByClo(archiveMaster);
+
+ //修改复审内容
+ if (bol == 1) {
+ // 从session获取用户名
+ Subject currentUser = SecurityUtils.getSubject();
+ Session session = currentUser.getSession();
+ String username = (String) session.getAttribute("userSession");//获取前面登录的用户名
+
+ //参数输入
+ SimpleDateFormat format1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+ String nowTime = format1.format(new Date());
+ emrFaultDetail.setUpdater(username);
+ emrFaultDetail.setUpdateTime(nowTime);
+ //修改复审内容
+ //1、查询出该病案的创建时间最近的缺陷记录
+ Emr_Fault_Detail entity= emrFaultDetailService.selectByArchiveDetailId(emrFaultDetail);
+ emrFaultDetail.setId(entity.getId());
+ //2、修改缺陷记录
+ bol = emrFaultDetailService.updateCloByPrimaryKey(emrFaultDetail);
+ }
+ return bol;
+ }
+*/
+ //终审
+ @ResponseBody
+ @RequestMapping(value = "/updateStateByArchivId")
+ public Msg updateStateByArchivId(HttpServletRequest request,Archive_Master_Vo master) throws Exception{
+ boolean flag = FormTokenFlagUtil.isFlag(request);
+ if (!flag) {
+ return Msg.fail("请不要重复提交!");
+ }
+ archiveMasterService.updateFiled(master);
+ return Msg.success();
+ }
+}
+
+
diff --git a/src/main/java/com/emr/controller/medicalRecallDateController.java b/src/main/java/com/emr/controller/medicalRecallDateController.java
new file mode 100644
index 0000000..970039d
--- /dev/null
+++ b/src/main/java/com/emr/controller/medicalRecallDateController.java
@@ -0,0 +1,83 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 14:39
+ * Description:病案召回日期日志
+ */
+package com.emr.controller;
+
+import com.alibaba.fastjson.JSON;
+import com.emr.entity.OffsetLimitPage;
+import com.emr.service.ipml.ArchiveCallbackInfoService;
+import com.emr.util.ExportExcelUtil;
+import com.emr.vo.ArchiveCallbackInfoVo;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Controller;
+import org.springframework.util.CollectionUtils;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.ResponseBody;
+
+import javax.servlet.http.HttpServletResponse;
+import java.text.SimpleDateFormat;
+import java.util.Date;
+import java.util.List;
+
+@Controller
+@RequestMapping("/recallDate")
+public class medicalRecallDateController {
+ @Autowired
+ private ArchiveCallbackInfoService callbackInfoService;
+ @RequestMapping(value = "/recallDates")
+ public String recallDates() {
+ return "medicalRecallDateDir/recallDateList";
+ }
+
+
+ /**
+ * 召回日志列表
+ * @param callbackInfo
+ * @param offset
+ * @param limit
+ * @return
+ */
+ @ResponseBody
+ @RequestMapping(value = "/recallDateList")
+ public OffsetLimitPage recallDateList(ArchiveCallbackInfoVo callbackInfo, Integer offset, Integer limit) {
+ return callbackInfoService.selectAll(callbackInfo,offset,limit);
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/exportExcel")
+ public void exportExcel(HttpServletResponse response,ArchiveCallbackInfoVo callbackInfo) throws Exception {
+ String tableThNames = "住院号,住院次数,姓名,出院科室,召回人,召回时间,召回原因,状态,归档状态";
+ String fieldCns = "inpNo,visitId,name,deptName,callbackUserName,startDate,callbackReason,status,archivestate";
+ List list = callbackInfoService.selectCallBackInfo(callbackInfo);
+ SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+ if(!CollectionUtils.isEmpty(list)){
+ for(ArchiveCallbackInfoVo callbackInfoVo : list){
+ Date callbackTime = callbackInfoVo.getCallbackTime();
+ if(null != callbackTime){
+ String date = fmt.format(callbackTime);
+ callbackInfoVo.setStartDate(date);
+ }
+ }
+ }
+ //文件名
+ String fileName = "召回记录" + new SimpleDateFormat("yyyyMMddHHmmss").format(new Date()) + ".xls";
+ //ExportExcelUtil
+ ExportExcelUtil exportExcelUtil = new ExportExcelUtil();
+ //导出excel的操作
+ exportExcelUtil.expordExcel(tableThNames,fieldCns,list,fileName,response);
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/lastBylogTitle")
+ public String lastBylogTitle(String id) {
+ ArchiveCallbackInfoVo vo = new ArchiveCallbackInfoVo();
+ vo.setMasterId(id);
+ List callbackInfoVos = callbackInfoService.selectCallBackInfo(vo);
+ return JSON.toJSONString(callbackInfoVos.get(0));
+ }
+}
+
+
diff --git a/src/main/java/com/emr/controller/unfileMedicalController.java b/src/main/java/com/emr/controller/unfileMedicalController.java
new file mode 100644
index 0000000..62a2c61
--- /dev/null
+++ b/src/main/java/com/emr/controller/unfileMedicalController.java
@@ -0,0 +1,66 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 14:40
+ * Description:未归档病历列表
+ */
+package com.emr.controller;
+
+import com.emr.entity.Archive_Master_Vo;
+import com.emr.entity.OffsetLimitPage;
+import com.emr.service.Archive_MasterService;
+import com.emr.util.ExportExcelUtil;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.ResponseBody;
+
+import javax.servlet.http.HttpServletResponse;
+import java.text.SimpleDateFormat;
+import java.util.Date;
+import java.util.List;
+
+@Controller
+@RequestMapping("/unfile")
+public class unfileMedicalController {
+ @Autowired
+ private Archive_MasterService archiveMasterService;
+ @RequestMapping(value = "/unfileMedicals")
+ public String faults() {
+ return "unfileMedicalDir/unfileMedicalList";
+ }
+
+ @ResponseBody
+ @RequestMapping(value = "/unfileList")
+ public OffsetLimitPage unfileList(Archive_Master_Vo archiveMasterVo, Integer offset, Integer limit,Integer isSearch) {
+ //判断是否是初始化查询,是初始化查询把开始结束时间置空
+ if(isSearch == 0){
+ archiveMasterVo.setStartDateTo(null);
+ archiveMasterVo.setEndDateTo(null);
+ }
+ return archiveMasterService.selectByUnfile(archiveMasterVo, offset, limit);
+ }
+
+
+ @ResponseBody
+ @RequestMapping(value = "/exportExcel")
+ public void exportExcel(HttpServletResponse response, Archive_Master_Vo archiveMasterVo,Integer isSearch) throws Exception {
+ String tableThNames = "住院号,住院次数,姓名,性别,入院科室,入院日期,出院科室,出院日期,主管医生,状态";
+ String fieldCns = "inpNo,visitId,name,sex,deptAdmissionTo,admissionDateTime,deptName,dischargeDateTime,doctorInCharge,status";
+ //构造excel的数据
+ //判断是否是初始化查询,是初始化查询把开始结束时间置空
+ if(isSearch == 0){
+ archiveMasterVo.setStartDateTo(null);
+ archiveMasterVo.setEndDateTo(null);
+ }
+ List list = archiveMasterService.selectByUnfile(archiveMasterVo);
+ //文件名
+ String fileName = "未归档病历列表" + new SimpleDateFormat("yyyyMMddHHmmss").format(new Date()) + ".xls";
+ //ExportExcelUtil
+ ExportExcelUtil exportExcelUtil = new ExportExcelUtil();
+ //导出excel的操作
+ exportExcelUtil.expordExcel(tableThNames, fieldCns, list, fileName, response);
+ }
+}
+
+
diff --git a/src/main/java/com/emr/dao/ArchiveCallbackInfoMapper.java b/src/main/java/com/emr/dao/ArchiveCallbackInfoMapper.java
new file mode 100644
index 0000000..2bbf7f3
--- /dev/null
+++ b/src/main/java/com/emr/dao/ArchiveCallbackInfoMapper.java
@@ -0,0 +1,20 @@
+package com.emr.dao;
+
+import com.emr.entity.ArchiveCallbackInfo;
+import com.emr.vo.ArchiveCallbackInfoVo;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
+
+public interface ArchiveCallbackInfoMapper {
+ int insert(ArchiveCallbackInfo record);
+
+ int insertSelective(ArchiveCallbackInfo record);
+
+ List selectAll(ArchiveCallbackInfoVo callbackInfoVo);
+
+ /**
+ * 根据masterId查询最新一次召回记录
+ * */
+ ArchiveCallbackInfoVo lastBylogTitle(@Param("masterId")String masterId);
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/dao/ArchiveFlowInfoMapper.java b/src/main/java/com/emr/dao/ArchiveFlowInfoMapper.java
new file mode 100644
index 0000000..09c740a
--- /dev/null
+++ b/src/main/java/com/emr/dao/ArchiveFlowInfoMapper.java
@@ -0,0 +1,26 @@
+package com.emr.dao;
+
+import com.emr.entity.ArchiveFlowInfo;
+import com.emr.vo.ArchiveFlowInfoVo;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
+
+public interface ArchiveFlowInfoMapper {
+ int deleteByPrimaryKey(Integer id);
+
+ int insert(ArchiveFlowInfo record);
+
+ int insertSelective(ArchiveFlowInfo record);
+
+ ArchiveFlowInfo selectByPrimaryKey(Integer id);
+
+ int updateByPrimaryKeySelective(ArchiveFlowInfo record);
+
+ int updateByPrimaryKey(ArchiveFlowInfo record);
+
+ List selectPreInfo(@Param("masterId")String masterId,@Param("targetStep")String targetStep);
+
+ List selectFlowInfoByMasterId(@Param("masterId")String masterId);
+ List selectFlowInfoList(@Param("record")ArchiveFlowInfo record,@Param("sql")String sql);
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/dao/ArchiveFlowRoleMapper.java b/src/main/java/com/emr/dao/ArchiveFlowRoleMapper.java
new file mode 100644
index 0000000..b2b9f75
--- /dev/null
+++ b/src/main/java/com/emr/dao/ArchiveFlowRoleMapper.java
@@ -0,0 +1,21 @@
+package com.emr.dao;
+
+import com.emr.entity.ArchiveFlowRole;
+
+import java.util.List;
+
+public interface ArchiveFlowRoleMapper {
+ int deleteByPrimaryKey(Integer id);
+
+ int insert(ArchiveFlowRole record);
+
+ int insertSelective(ArchiveFlowRole record);
+
+ ArchiveFlowRole selectByPrimaryKey(Integer id);
+
+ int updateByPrimaryKeySelective(ArchiveFlowRole record);
+
+ int updateByPrimaryKey(ArchiveFlowRole record);
+
+ List selectAll();
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/dao/Archive_DetailMapper.java b/src/main/java/com/emr/dao/Archive_DetailMapper.java
new file mode 100644
index 0000000..f3868d1
--- /dev/null
+++ b/src/main/java/com/emr/dao/Archive_DetailMapper.java
@@ -0,0 +1,37 @@
+package com.emr.dao;
+
+import com.emr.entity.Archive_Detail;
+import com.emr.entity.Archive_Detail_Vo;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
+
+public interface Archive_DetailMapper {
+ int deleteByPrimaryKey(String id);
+
+ int deleteByClo(Archive_Detail record);
+
+ int insert(Archive_Detail record);
+
+ int insertSel(Archive_Detail record);
+
+ Archive_Detail selectByid(String id);
+
+ int updateCloById(Archive_Detail record);
+
+ int updateByPrimaryKey(Archive_Detail record);
+
+ List selectByColm(Archive_Detail record);
+
+ List selectByCol(Archive_Detail record);
+
+ List selectByClo(Archive_Detail_Vo record);
+
+ List detailByClo(Archive_Detail_Vo record);
+
+ List selectByIdStr(Archive_Detail record);
+
+ List selectTypeTreeByPatientIdAndAssortIds(@Param("patientId")String patientId,@Param("assortIds")String assortIds);
+
+ List selectPdfPathByIds(@Param("masterId")String masterId,@Param("detailIds")String detailIds);
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/dao/Archive_MasterMapper.java b/src/main/java/com/emr/dao/Archive_MasterMapper.java
new file mode 100644
index 0000000..a9a0347
--- /dev/null
+++ b/src/main/java/com/emr/dao/Archive_MasterMapper.java
@@ -0,0 +1,42 @@
+package com.emr.dao;
+
+import com.emr.entity.Archive_Master;
+import com.emr.entity.Archive_Master_Vo;
+import com.emr.vo.DoctorStatistics;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
+
+public interface Archive_MasterMapper {
+ int deleteByPrimaryKey(String id);
+
+ int insert(Archive_Master record);
+
+ int insertSelective(Archive_Master record);
+
+ Archive_Master selectByPrimaryKey(String id);
+
+ List selectByCol(Archive_Master_Vo record);
+
+ List selectByColumn(Archive_Master_Vo record);
+
+ List selectByLast(Archive_Master_Vo record);
+
+ List selectByUnfile(Archive_Master_Vo record);
+
+ int updateByClo(Archive_Master record);
+
+ int updateById(Archive_Master record);
+
+ List getDoctorFileInfo(@Param("deptCode")String deptCode,@Param("doctor")String doctor,@Param("startTime")String startTime,@Param("endTime")String endTime);
+
+ /**
+ * 查询病案是否存在
+ * */
+ List selectByObject(Archive_Master master);
+
+ /**
+ * 查询已归档记录
+ * */
+ List selectFiled(Archive_Master_Vo master);
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/dao/EmrHolidaySetMapper.java b/src/main/java/com/emr/dao/EmrHolidaySetMapper.java
new file mode 100644
index 0000000..506fb5b
--- /dev/null
+++ b/src/main/java/com/emr/dao/EmrHolidaySetMapper.java
@@ -0,0 +1,34 @@
+package com.emr.dao;
+
+import com.emr.entity.EmrHolidaySet;
+import com.emr.entity.EmrHolidaySetVo;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.Date;
+import java.util.List;
+
+public interface EmrHolidaySetMapper {
+ int deleteByPrimaryKey(Integer id);
+
+ int insert(EmrHolidaySet record);
+
+ int insertSelective(EmrHolidaySet record);
+
+ EmrHolidaySet selectByPrimaryKey(Integer id);
+
+ int updateByPrimaryKeySelective(EmrHolidaySet record);
+
+ int updateByPrimaryKey(EmrHolidaySet record);
+
+ List selectAllByDates(@Param("startTime")String startTime, @Param("endTime")String endTime);
+
+ int SampleInsert(@Param("list")List list);
+
+ int SampleUpdate(@Param("list")List list);
+
+ List selectByColumn(EmrHolidaySetVo record);
+
+ int selectColByTableName(@Param("tableName")String tableName);
+
+ int selectHolidayByDate(@Param("startDate") Date startDate);
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/dao/EmrOvertimeSetMapper.java b/src/main/java/com/emr/dao/EmrOvertimeSetMapper.java
new file mode 100644
index 0000000..c392d97
--- /dev/null
+++ b/src/main/java/com/emr/dao/EmrOvertimeSetMapper.java
@@ -0,0 +1,17 @@
+package com.emr.dao;
+
+import com.emr.entity.EmrOvertimeSet;
+
+public interface EmrOvertimeSetMapper {
+ int deleteByPrimaryKey(Integer id);
+
+ int insert(EmrOvertimeSet record);
+
+ int insertSelective(EmrOvertimeSet record);
+
+ EmrOvertimeSet selectByPrimaryKey(Integer id);
+
+ int updateByPrimaryKeySelective(EmrOvertimeSet record);
+
+ int updateByPrimaryKey(EmrOvertimeSet record);
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/dao/EmrPatientMapper.java b/src/main/java/com/emr/dao/EmrPatientMapper.java
new file mode 100644
index 0000000..b72df68
--- /dev/null
+++ b/src/main/java/com/emr/dao/EmrPatientMapper.java
@@ -0,0 +1,7 @@
+package com.emr.dao;
+
+import org.apache.ibatis.annotations.Param;
+
+public interface EmrPatientMapper {
+ int selectExistByPatient(@Param("fpatno") String fpatno);
+}
diff --git a/src/main/java/com/emr/dao/Emr_Archive_DetailMapper.java b/src/main/java/com/emr/dao/Emr_Archive_DetailMapper.java
new file mode 100644
index 0000000..a0e5149
--- /dev/null
+++ b/src/main/java/com/emr/dao/Emr_Archive_DetailMapper.java
@@ -0,0 +1,17 @@
+package com.emr.dao;
+
+import com.emr.entity.Emr_Archive_Detail;
+
+public interface Emr_Archive_DetailMapper {
+ int deleteByPrimaryKey(Integer id);
+
+ int insert(Emr_Archive_Detail record);
+
+ int insertSelective(Emr_Archive_Detail record);
+
+ Emr_Archive_Detail selectByPrimaryKey(Integer id);
+
+ int updateByPrimaryKeySelective(Emr_Archive_Detail record);
+
+ int updateByPrimaryKey(Emr_Archive_Detail record);
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/dao/Emr_DictionaryMapper.java b/src/main/java/com/emr/dao/Emr_DictionaryMapper.java
new file mode 100644
index 0000000..df515a2
--- /dev/null
+++ b/src/main/java/com/emr/dao/Emr_DictionaryMapper.java
@@ -0,0 +1,42 @@
+package com.emr.dao;
+
+import com.emr.entity.Emr_Dictionary;
+
+import java.util.List;
+
+public interface Emr_DictionaryMapper {
+ /**
+ * 根据类型代码查找字典列表
+ * @param emrDictionary
+ * @return
+ */
+ List dicByTypeCode(Emr_Dictionary emrDictionary);
+
+ /**
+ * 根据字段查找字典列表
+ * @param emrDictionary
+ * @return
+ */
+ List dicByClo(Emr_Dictionary emrDictionary);
+
+ /**
+ * 根据字段查找记录
+ * @param emrDictionary
+ * @return
+ */
+ int insertSel(Emr_Dictionary emrDictionary);
+
+ /**
+ * 根据id删除记录
+ * @param id
+ * @return
+ */
+ int delById(Integer id);
+
+ /**
+ * 根据id修改记录
+ * @param emrDictionary
+ * @return
+ */
+ int updateCloById(Emr_Dictionary emrDictionary);
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/dao/Emr_Fault_DetailMapper.java b/src/main/java/com/emr/dao/Emr_Fault_DetailMapper.java
new file mode 100644
index 0000000..88288ed
--- /dev/null
+++ b/src/main/java/com/emr/dao/Emr_Fault_DetailMapper.java
@@ -0,0 +1,24 @@
+package com.emr.dao;
+
+import com.emr.entity.Emr_Fault_Detail;
+import com.emr.entity.Emr_Fault_Vo;
+
+import java.util.List;
+
+public interface Emr_Fault_DetailMapper {
+ int deleteByPrimaryKey(Integer id);
+
+ int insert(Emr_Fault_Detail record);
+
+ int insertSel(Emr_Fault_Detail record);
+
+ Emr_Fault_Detail selectByPrimaryKey(Integer id);
+
+ int updateCloByPrimaryKey(Emr_Fault_Detail record);
+
+ int updateByPrimaryKey(Emr_Fault_Detail record);
+
+ List selectByCol(Emr_Fault_Vo record);
+
+ Emr_Fault_Detail selectByArchiveDetailId(Emr_Fault_Detail record);
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/dao/Emr_Fault_TypeMapper.java b/src/main/java/com/emr/dao/Emr_Fault_TypeMapper.java
new file mode 100644
index 0000000..920bb2f
--- /dev/null
+++ b/src/main/java/com/emr/dao/Emr_Fault_TypeMapper.java
@@ -0,0 +1,22 @@
+package com.emr.dao;
+
+import com.emr.entity.Emr_Fault_Type;
+
+import java.util.List;
+
+public interface Emr_Fault_TypeMapper {
+ int delById(Integer id);
+
+ int insert(Emr_Fault_Type record);
+
+ int insertClo(Emr_Fault_Type record);
+
+ List selectByCol(Emr_Fault_Type record);
+
+ int updateByClo(Emr_Fault_Type record);
+
+ int updateByPrimaryKey(Emr_Fault_Type record);
+
+ Emr_Fault_Type selectById(Integer id);
+
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/dao/Emr_LogMapper.java b/src/main/java/com/emr/dao/Emr_LogMapper.java
new file mode 100644
index 0000000..ff30091
--- /dev/null
+++ b/src/main/java/com/emr/dao/Emr_LogMapper.java
@@ -0,0 +1,22 @@
+package com.emr.dao;
+
+import com.emr.entity.Emr_Log;
+import com.emr.entity.Emr_Log_Vo;
+
+import java.util.List;
+
+public interface Emr_LogMapper {
+ int deleteByPrimaryKey(Integer logId);
+
+ int insert(Emr_Log record);
+
+ int insertSelective(Emr_Log record);
+
+ Emr_Log lastBylogTitle(String logTitle);
+
+ int updateByPrimaryKeySelective(Emr_Log record);
+
+ int updateByPrimaryKey(Emr_Log record);
+
+ List selectByCol(Emr_Log_Vo record);
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/dao/Emr_PictureMapper.java b/src/main/java/com/emr/dao/Emr_PictureMapper.java
new file mode 100644
index 0000000..584921d
--- /dev/null
+++ b/src/main/java/com/emr/dao/Emr_PictureMapper.java
@@ -0,0 +1,21 @@
+package com.emr.dao;
+
+import com.emr.entity.Emr_Picture;
+
+import java.util.List;
+
+public interface Emr_PictureMapper {
+ int deleteById(String id);
+
+ int insert(Emr_Picture record);
+
+ int insertSel(Emr_Picture record);
+
+ Emr_Picture selectByid(String id);
+
+ int updateCloByIdOrFlay(Emr_Picture record);
+
+ int updateByPrimaryKey(Emr_Picture record);
+
+ List selectByClo(Emr_Picture record);
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/dao/StatisticsMapper.java b/src/main/java/com/emr/dao/StatisticsMapper.java
new file mode 100644
index 0000000..df612c6
--- /dev/null
+++ b/src/main/java/com/emr/dao/StatisticsMapper.java
@@ -0,0 +1,18 @@
+package com.emr.dao;
+
+import com.emr.entity.Archive_Master_Vo;
+import com.emr.vo.FinalAndFirstStatistics;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
+
+public interface StatisticsMapper {
+ //终审按天统计
+ List finalStatistics(@Param("startDate")String startDate,@Param("endDate")String endDate,@Param("sql")String sql);
+
+ //初审按天统计
+ List firstStatistics(@Param("startDate")String startDate,@Param("endDate")String endDate,@Param("sql")String sql);
+
+ //审核明细
+ List statistics(@Param("disStartDate")String disStartDate,@Param("disEndDate")String disEndDate,@Param("record")Archive_Master_Vo record,@Param("flag")Integer flag,@Param("sql")String sql);
+}
diff --git a/src/main/java/com/emr/dao/TPrintinfoMapper.java b/src/main/java/com/emr/dao/TPrintinfoMapper.java
new file mode 100644
index 0000000..f2b560e
--- /dev/null
+++ b/src/main/java/com/emr/dao/TPrintinfoMapper.java
@@ -0,0 +1,16 @@
+package com.emr.dao;
+
+import com.emr.entity.TPrintinfo;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
+
+public interface TPrintinfoMapper {
+ int insert(TPrintinfo record);
+
+ int insertSelective(TPrintinfo record);
+
+ List selectIsPrintByPatienId(@Param("patientId")String patientId);
+
+ TPrintinfo selectLockByPatienId(@Param("patientId")String patientId);
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/dao/TUuInfoMapper.java b/src/main/java/com/emr/dao/TUuInfoMapper.java
new file mode 100644
index 0000000..5f978d9
--- /dev/null
+++ b/src/main/java/com/emr/dao/TUuInfoMapper.java
@@ -0,0 +1,18 @@
+package com.emr.dao;
+
+import com.emr.entity.TUuInfo;
+import com.emr.vo.TUuInfoVo;
+import com.emr.vo.TUuPrintSearch;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
+
+public interface TUuInfoMapper {
+ int insert(TUuInfo record);
+
+ int insertSelective(TUuInfo record);
+
+ List getScanCount(TUuPrintSearch record);
+
+ List getScanInfo(TUuPrintSearch record);
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/dao/TUuPrintMapper.java b/src/main/java/com/emr/dao/TUuPrintMapper.java
new file mode 100644
index 0000000..d7163d4
--- /dev/null
+++ b/src/main/java/com/emr/dao/TUuPrintMapper.java
@@ -0,0 +1,18 @@
+package com.emr.dao;
+
+import com.emr.entity.TUuPrint;
+import com.emr.vo.TUuPrintSearch;
+import com.emr.vo.TUuPrintVo;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
+
+public interface TUuPrintMapper {
+ int insert(TUuPrint record);
+
+ int insertSelective(TUuPrint record);
+
+ List getPrintCount(TUuPrintSearch record);
+
+ List getPrintInfo(TUuPrintSearch record);
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/dao/V_CountMapper.java b/src/main/java/com/emr/dao/V_CountMapper.java
new file mode 100644
index 0000000..d4b7a11
--- /dev/null
+++ b/src/main/java/com/emr/dao/V_CountMapper.java
@@ -0,0 +1,19 @@
+package com.emr.dao;
+
+import com.emr.entity.V_Count;
+import com.emr.vo.V_CountVo;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
+
+public interface V_CountMapper {
+ List selectByCol(V_CountVo record);
+
+// /**
+// * 根据条件查找统计列表分页
+// *
+// * @param record
+// * @return
+// */
+// List selectPageByClo(V_Count record);
+}
diff --git a/src/main/java/com/emr/dao/Zd_AssortMapper.java b/src/main/java/com/emr/dao/Zd_AssortMapper.java
new file mode 100644
index 0000000..ecf4a23
--- /dev/null
+++ b/src/main/java/com/emr/dao/Zd_AssortMapper.java
@@ -0,0 +1,13 @@
+package com.emr.dao;
+
+import com.emr.entity.Zd_Assort;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
+
+public interface Zd_AssortMapper {
+ /**
+ * 全查
+ * */
+ List selectAll(@Param("record") Zd_Assort record);
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/entity/ArchiveCallbackInfo.java b/src/main/java/com/emr/entity/ArchiveCallbackInfo.java
new file mode 100644
index 0000000..494963c
--- /dev/null
+++ b/src/main/java/com/emr/entity/ArchiveCallbackInfo.java
@@ -0,0 +1,78 @@
+package com.emr.entity;
+
+import com.fasterxml.jackson.annotation.JsonFormat;
+
+import java.io.Serializable;
+import java.util.Date;
+
+public class ArchiveCallbackInfo implements Serializable {
+ private String masterId;
+
+ private String callbackUserName;
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
+ private Date callbackTime;
+
+ private String callbackReason;
+
+ private String ip;
+
+ private static final long serialVersionUID = 1L;
+
+ public String getIp() {
+ return ip;
+ }
+
+ public void setIp(String ip) {
+ this.ip = ip;
+ }
+
+ public static long getSerialVersionUID() {
+ return serialVersionUID;
+ }
+
+ public String getMasterId() {
+ return masterId;
+ }
+
+ public void setMasterId(String masterId) {
+ this.masterId = masterId == null ? null : masterId.trim();
+ }
+
+ public String getCallbackUserName() {
+ return callbackUserName;
+ }
+
+ public void setCallbackUserName(String callbackUserName) {
+ this.callbackUserName = callbackUserName == null ? null : callbackUserName.trim();
+ }
+
+ public Date getCallbackTime() {
+ return callbackTime;
+ }
+
+ public void setCallbackTime(Date callbackTime) {
+ this.callbackTime = callbackTime;
+ }
+
+ public String getCallbackReason() {
+ return callbackReason;
+ }
+
+ public void setCallbackReason(String callbackReason) {
+ this.callbackReason = callbackReason == null ? null : callbackReason.trim();
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append(getClass().getSimpleName());
+ sb.append(" [");
+ sb.append("Hash = ").append(hashCode());
+ sb.append(", masterId=").append(masterId);
+ sb.append(", callbackUserName=").append(callbackUserName);
+ sb.append(", callbackTime=").append(callbackTime);
+ sb.append(", callbackReason=").append(callbackReason);
+ sb.append("]");
+ return sb.toString();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/entity/ArchiveFlowInfo.java b/src/main/java/com/emr/entity/ArchiveFlowInfo.java
new file mode 100644
index 0000000..44ee185
--- /dev/null
+++ b/src/main/java/com/emr/entity/ArchiveFlowInfo.java
@@ -0,0 +1,172 @@
+package com.emr.entity;
+
+import java.io.Serializable;
+import java.util.Date;
+
+public class ArchiveFlowInfo implements Serializable {
+ private Integer id;
+
+ private String masterId;
+
+ private Integer stepIndex;
+
+ private Integer startStepId;
+
+ private String startStep;
+
+ private String sumbitName;
+
+ private Integer targetStepId;
+
+ private String targetStep;
+
+ private Short operRole;
+
+ private Long useSeconds;
+
+ private String remark;
+
+ private String userName;
+
+ private Date sumbitTime;
+
+ private Date createtime;
+
+ private static final long serialVersionUID = 1L;
+
+ public Integer getId() {
+ return id;
+ }
+
+ public void setId(Integer id) {
+ this.id = id;
+ }
+
+ public String getMasterId() {
+ return masterId;
+ }
+
+ public void setMasterId(String masterId) {
+ this.masterId = masterId == null ? null : masterId.trim();
+ }
+
+ public Integer getStepIndex() {
+ return stepIndex;
+ }
+
+ public void setStepIndex(Integer stepIndex) {
+ this.stepIndex = stepIndex;
+ }
+
+ public Integer getStartStepId() {
+ return startStepId;
+ }
+
+ public void setStartStepId(Integer startStepId) {
+ this.startStepId = startStepId;
+ }
+
+ public String getStartStep() {
+ return startStep;
+ }
+
+ public void setStartStep(String startStep) {
+ this.startStep = startStep == null ? null : startStep.trim();
+ }
+
+ public String getSumbitName() {
+ return sumbitName;
+ }
+
+ public void setSumbitName(String sumbitName) {
+ this.sumbitName = sumbitName == null ? null : sumbitName.trim();
+ }
+
+ public Integer getTargetStepId() {
+ return targetStepId;
+ }
+
+ public void setTargetStepId(Integer targetStepId) {
+ this.targetStepId = targetStepId;
+ }
+
+ public String getTargetStep() {
+ return targetStep;
+ }
+
+ public void setTargetStep(String targetStep) {
+ this.targetStep = targetStep == null ? null : targetStep.trim();
+ }
+
+ public Short getOperRole() {
+ return operRole;
+ }
+
+ public void setOperRole(Short operRole) {
+ this.operRole = operRole;
+ }
+
+ public Long getUseSeconds() {
+ return useSeconds;
+ }
+
+ public void setUseSeconds(Long useSeconds) {
+ this.useSeconds = useSeconds;
+ }
+
+ public String getRemark() {
+ return remark;
+ }
+
+ public void setRemark(String remark) {
+ this.remark = remark == null ? null : remark.trim();
+ }
+
+ public String getUserName() {
+ return userName;
+ }
+
+ public void setUserName(String userName) {
+ this.userName = userName == null ? null : userName.trim();
+ }
+
+ public Date getSumbitTime() {
+ return sumbitTime;
+ }
+
+ public void setSumbitTime(Date sumbitTime) {
+ this.sumbitTime = sumbitTime;
+ }
+
+ public Date getCreatetime() {
+ return createtime;
+ }
+
+ public void setCreatetime(Date createtime) {
+ this.createtime = createtime;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append(getClass().getSimpleName());
+ sb.append(" [");
+ sb.append("Hash = ").append(hashCode());
+ sb.append(", id=").append(id);
+ sb.append(", masterId=").append(masterId);
+ sb.append(", stepIndex=").append(stepIndex);
+ sb.append(", startStepId=").append(startStepId);
+ sb.append(", startStep=").append(startStep);
+ sb.append(", sumbitName=").append(sumbitName);
+ sb.append(", targetStepId=").append(targetStepId);
+ sb.append(", targetStep=").append(targetStep);
+ sb.append(", operRole=").append(operRole);
+ sb.append(", useSeconds=").append(useSeconds);
+ sb.append(", remark=").append(remark);
+ sb.append(", userName=").append(userName);
+ sb.append(", sumbitTime=").append(sumbitTime);
+ sb.append(", createtime=").append(createtime);
+ sb.append("]");
+ return sb.toString();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/entity/ArchiveFlowRole.java b/src/main/java/com/emr/entity/ArchiveFlowRole.java
new file mode 100644
index 0000000..a80cb6b
--- /dev/null
+++ b/src/main/java/com/emr/entity/ArchiveFlowRole.java
@@ -0,0 +1,94 @@
+package com.emr.entity;
+
+import java.io.Serializable;
+
+public class ArchiveFlowRole implements Serializable {
+ private Integer id;
+
+ private String code;
+
+ private String name;
+
+ private String sumbitName;
+
+ private Short effective;
+
+ private Integer stepIndex;
+
+ private Short role;
+
+ private static final long serialVersionUID = 1L;
+
+ public Integer getId() {
+ return id;
+ }
+
+ public void setId(Integer id) {
+ this.id = id;
+ }
+
+ public String getCode() {
+ return code;
+ }
+
+ public void setCode(String code) {
+ this.code = code == null ? null : code.trim();
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name == null ? null : name.trim();
+ }
+
+ public String getSumbitName() {
+ return sumbitName;
+ }
+
+ public void setSumbitName(String sumbitName) {
+ this.sumbitName = sumbitName == null ? null : sumbitName.trim();
+ }
+
+ public Short getEffective() {
+ return effective;
+ }
+
+ public void setEffective(Short effective) {
+ this.effective = effective;
+ }
+
+ public Integer getStepIndex() {
+ return stepIndex;
+ }
+
+ public void setStepIndex(Integer stepIndex) {
+ this.stepIndex = stepIndex;
+ }
+
+ public Short getRole() {
+ return role;
+ }
+
+ public void setRole(Short role) {
+ this.role = role;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append(getClass().getSimpleName());
+ sb.append(" [");
+ sb.append("Hash = ").append(hashCode());
+ sb.append(", id=").append(id);
+ sb.append(", code=").append(code);
+ sb.append(", name=").append(name);
+ sb.append(", sumbitName=").append(sumbitName);
+ sb.append(", effective=").append(effective);
+ sb.append(", stepIndex=").append(stepIndex);
+ sb.append(", role=").append(role);
+ sb.append("]");
+ return sb.toString();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/entity/Archive_Detail.java b/src/main/java/com/emr/entity/Archive_Detail.java
new file mode 100644
index 0000000..111ef44
--- /dev/null
+++ b/src/main/java/com/emr/entity/Archive_Detail.java
@@ -0,0 +1,103 @@
+package com.emr.entity;
+
+public class Archive_Detail {
+ private String id;
+
+ private String pdfPath;
+
+ private String masterid;
+
+ private String uploaddatetime;
+
+ private String assortid;
+
+ private String source;
+
+ private String subassort;
+
+ private String title;
+
+ private String flag;
+
+ private String sys;
+
+ public String getId() {
+ return id;
+ }
+
+ public void setId(String id) {
+ this.id = id == null ? null : id.trim();
+ }
+
+ public String getPdfPath() {
+ return pdfPath;
+ }
+
+ public void setPdfPath(String pdfPath) {
+ this.pdfPath = pdfPath == null ? null : pdfPath.trim();
+ }
+
+ public String getMasterid() {
+ return masterid;
+ }
+
+ public void setMasterid(String masterid) {
+ this.masterid = masterid == null ? null : masterid.trim();
+ }
+
+ public String getUploaddatetime() {
+ return uploaddatetime;
+ }
+
+ public void setUploaddatetime(String uploaddatetime) {
+ this.uploaddatetime = uploaddatetime == null ? null : uploaddatetime.trim();
+ }
+
+ public String getAssortid() {
+ return assortid;
+ }
+
+ public void setAssortid(String assortid) {
+ this.assortid = assortid == null ? null : assortid.trim();
+ }
+
+ public String getSource() {
+ return source;
+ }
+
+ public void setSource(String source) {
+ this.source = source == null ? null : source.trim();
+ }
+
+ public String getSubassort() {
+ return subassort;
+ }
+
+ public void setSubassort(String subassort) {
+ this.subassort = subassort == null ? null : subassort.trim();
+ }
+
+ public String getTitle() {
+ return title;
+ }
+
+ public void setTitle(String title) {
+ this.title = title == null ? null : title.trim();
+ }
+
+ public String getFlag() {
+ return flag;
+ }
+
+ public void setFlag(String flag) {
+ this.flag = flag == null ? null : flag.trim();
+ }
+
+ public String getSys() {
+ return sys;
+ }
+
+ public void setSys(String sys) {
+ this.sys = sys == null ? null : sys.trim();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/entity/Archive_Detail_Vo.java b/src/main/java/com/emr/entity/Archive_Detail_Vo.java
new file mode 100644
index 0000000..d3bbed2
--- /dev/null
+++ b/src/main/java/com/emr/entity/Archive_Detail_Vo.java
@@ -0,0 +1,30 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/29 15:02
+ * Description:分段目录扩展
+ */
+package com.emr.entity;
+
+import lombok.Data;
+
+@Data
+public class Archive_Detail_Vo extends Archive_Detail{
+ private String assortName;
+
+ private Short assortSort;
+
+ private String printFlag;
+
+ private String patientId;
+
+ private String scanPage;
+
+ private int pageNum;
+
+ private Integer checker;
+
+ private String assortId;
+}
+
+
diff --git a/src/main/java/com/emr/entity/Archive_Master.java b/src/main/java/com/emr/entity/Archive_Master.java
new file mode 100644
index 0000000..3445973
--- /dev/null
+++ b/src/main/java/com/emr/entity/Archive_Master.java
@@ -0,0 +1,233 @@
+package com.emr.entity;
+
+public class Archive_Master {
+ private String id;
+
+ private String patientId;
+
+ private String inpNo;
+
+ private String visitId;
+
+ private String name;
+
+ private String sex;
+
+ private String deptName;
+
+ private String dischargeDateTime;
+
+ private String archivestate;
+
+ private String admissionDateTime;
+
+ private String deptAdmissionTo;
+
+ private String checkDoctor;
+
+ private String checkDatetime;
+
+ private String checkedDoctor;
+
+ private String checkedDatetime;
+
+ private String lockinfo;
+
+ private String doctorInCharge;
+
+ private String idNo;
+
+ private String dischargeDisposition;
+
+ private String deptCodeLend;
+
+ private String returntoRole;
+
+ private String returnOperUsername;
+
+ private String changeReason;
+
+ public String getChangeReason() {
+ return changeReason;
+ }
+
+ public void setChangeReason(String changeReason) {
+ this.changeReason = changeReason;
+ }
+
+ public String getReturntoRole() {
+ return returntoRole;
+ }
+
+ public void setReturntoRole(String returntoRole) {
+ this.returntoRole = returntoRole;
+ }
+
+ public String getReturnOperUsername() {
+ return returnOperUsername;
+ }
+
+ public void setReturnOperUsername(String returnOperUsername) {
+ this.returnOperUsername = returnOperUsername;
+ }
+
+ public String getId() {
+ return id;
+ }
+
+ public void setId(String id) {
+ this.id = id == null ? null : id.trim();
+ }
+
+ public String getPatientId() {
+ return patientId;
+ }
+
+ public void setPatientId(String patientId) {
+ this.patientId = patientId == null ? null : patientId.trim();
+ }
+
+ public String getInpNo() {
+ return inpNo;
+ }
+
+ public void setInpNo(String inpNo) {
+ this.inpNo = inpNo == null ? null : inpNo.trim();
+ }
+
+ public String getVisitId() {
+ return visitId;
+ }
+
+ public void setVisitId(String visitId) {
+ this.visitId = visitId == null ? null : visitId.trim();
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name == null ? null : name.trim();
+ }
+
+ public String getSex() {
+ return sex;
+ }
+
+ public void setSex(String sex) {
+ this.sex = sex == null ? null : sex.trim();
+ }
+
+ public String getDeptName() {
+ return deptName;
+ }
+
+ public void setDeptName(String deptName) {
+ this.deptName = deptName == null ? null : deptName.trim();
+ }
+
+ public String getDischargeDateTime() {
+ return dischargeDateTime;
+ }
+
+ public void setDischargeDateTime(String dischargeDateTime) {
+ this.dischargeDateTime = dischargeDateTime == null ? null : dischargeDateTime.trim();
+ }
+
+ public String getArchivestate() {
+ return archivestate;
+ }
+
+ public void setArchivestate(String archivestate) {
+ this.archivestate = archivestate == null ? null : archivestate.trim();
+ }
+
+ public String getAdmissionDateTime() {
+ return admissionDateTime;
+ }
+
+ public void setAdmissionDateTime(String admissionDateTime) {
+ this.admissionDateTime = admissionDateTime == null ? null : admissionDateTime.trim();
+ }
+
+ public String getDeptAdmissionTo() {
+ return deptAdmissionTo;
+ }
+
+ public void setDeptAdmissionTo(String deptAdmissionTo) {
+ this.deptAdmissionTo = deptAdmissionTo == null ? null : deptAdmissionTo.trim();
+ }
+
+ public String getCheckDoctor() {
+ return checkDoctor;
+ }
+
+ public void setCheckDoctor(String checkDoctor) {
+ this.checkDoctor = checkDoctor == null ? null : checkDoctor.trim();
+ }
+
+ public String getCheckDatetime() {
+ return checkDatetime;
+ }
+
+ public void setCheckDatetime(String checkDatetime) {
+ this.checkDatetime = checkDatetime == null ? null : checkDatetime.trim();
+ }
+
+ public String getCheckedDoctor() {
+ return checkedDoctor;
+ }
+
+ public void setCheckedDoctor(String checkedDoctor) {
+ this.checkedDoctor = checkedDoctor == null ? null : checkedDoctor.trim();
+ }
+
+ public String getCheckedDatetime() {
+ return checkedDatetime;
+ }
+
+ public void setCheckedDatetime(String checkedDatetime) {
+ this.checkedDatetime = checkedDatetime == null ? null : checkedDatetime.trim();
+ }
+
+ public String getLockinfo() {
+ return lockinfo;
+ }
+
+ public void setLockinfo(String lockinfo) {
+ this.lockinfo = lockinfo == null ? null : lockinfo.trim();
+ }
+
+ public String getDoctorInCharge() {
+ return doctorInCharge;
+ }
+
+ public void setDoctorInCharge(String doctorInCharge) {
+ this.doctorInCharge = doctorInCharge == null ? null : doctorInCharge.trim();
+ }
+
+ public String getIdNo() {
+ return idNo;
+ }
+
+ public void setIdNo(String idNo) {
+ this.idNo = idNo == null ? null : idNo.trim();
+ }
+
+ public String getDischargeDisposition() {
+ return dischargeDisposition;
+ }
+
+ public void setDischargeDisposition(String dischargeDisposition) {
+ this.dischargeDisposition = dischargeDisposition == null ? null : dischargeDisposition.trim();
+ }
+
+ public String getDeptCodeLend() {
+ return deptCodeLend;
+ }
+
+ public void setDeptCodeLend(String deptCodeLend) {
+ this.deptCodeLend = deptCodeLend == null ? null : deptCodeLend.trim();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/entity/Archive_Master_Vo.java b/src/main/java/com/emr/entity/Archive_Master_Vo.java
new file mode 100644
index 0000000..65174f6
--- /dev/null
+++ b/src/main/java/com/emr/entity/Archive_Master_Vo.java
@@ -0,0 +1,44 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/26 17:51
+ * Description:
+ */
+package com.emr.entity;
+
+import lombok.Data;
+
+import java.util.List;
+
+@Data
+public class Archive_Master_Vo extends Archive_Master{
+ private String startDateTo;
+
+ private String endDateTo;
+
+ private String startDate;
+
+ private String endDate;
+
+ private List deptList;
+
+ private Float days;
+
+ private String checkName;
+
+ private String checkedName;
+
+ private String btns;//拼接按钮
+
+ private String status;//转换中文状态
+
+ private String remark;//审核内容
+
+ private Integer roleCode;//审核角色stepIndex,步骤编码
+
+ private Integer role;//操作角色1,2,4
+
+ private Integer infoId;//流转流程的id
+}
+
+
diff --git a/src/main/java/com/emr/entity/AssortTypeTree.java b/src/main/java/com/emr/entity/AssortTypeTree.java
new file mode 100644
index 0000000..7211c28
--- /dev/null
+++ b/src/main/java/com/emr/entity/AssortTypeTree.java
@@ -0,0 +1,28 @@
+package com.emr.entity;
+
+import lombok.Data;
+
+/**
+ * @ProjectName:
+ * @Description:
+ * @Param 传输参数
+ * @Return
+ * @Author: 曾文和
+ * @CreateDate: 2020/4/22 17:40
+ * @UpdateUser: 曾文和
+ * @UpdateDate: 2020/4/22 17:40
+ * @UpdateRemark: 更新说明
+ * @Version: 1.0
+ */
+@Data
+public class AssortTypeTree {
+ private Integer id;
+
+ private Integer parentId;
+
+ private String name;
+
+ private String selfId;
+
+ private String checked;
+}
diff --git a/src/main/java/com/emr/entity/EmrHolidaySet.java b/src/main/java/com/emr/entity/EmrHolidaySet.java
new file mode 100644
index 0000000..2eeed73
--- /dev/null
+++ b/src/main/java/com/emr/entity/EmrHolidaySet.java
@@ -0,0 +1,61 @@
+package com.emr.entity;
+
+import java.io.Serializable;
+
+public class EmrHolidaySet implements Serializable {
+ private Integer id;
+
+ private String date;
+
+ private Short flag;
+
+ private String updateTime;
+
+ private static final long serialVersionUID = 1L;
+
+ public Integer getId() {
+ return id;
+ }
+
+ public void setId(Integer id) {
+ this.id = id;
+ }
+
+ public String getDate() {
+ return date;
+ }
+
+ public void setDate(String date) {
+ this.date = date == null ? null : date.trim();
+ }
+
+ public Short getFlag() {
+ return flag;
+ }
+
+ public void setFlag(Short flag) {
+ this.flag = flag;
+ }
+
+ public String getUpdateTime() {
+ return updateTime;
+ }
+
+ public void setUpdateTime(String updateTime) {
+ this.updateTime = updateTime == null ? null : updateTime.trim();
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append(getClass().getSimpleName());
+ sb.append(" [");
+ sb.append("Hash = ").append(hashCode());
+ sb.append(", id=").append(id);
+ sb.append(", date=").append(date);
+ sb.append(", flag=").append(flag);
+ sb.append(", updateTime=").append(updateTime);
+ sb.append("]");
+ return sb.toString();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/entity/EmrHolidaySetVo.java b/src/main/java/com/emr/entity/EmrHolidaySetVo.java
new file mode 100644
index 0000000..f772acd
--- /dev/null
+++ b/src/main/java/com/emr/entity/EmrHolidaySetVo.java
@@ -0,0 +1,53 @@
+package com.emr.entity;
+
+public class EmrHolidaySetVo extends EmrHolidaySet {
+ private String startTime;
+
+ private String endTime;
+
+ private int offset;
+
+ private int limit;
+
+ private String flagCh;
+
+ public String getFlagCh() {
+ return flagCh;
+ }
+
+ public void setFlagCh(String flagCh) {
+ this.flagCh = flagCh;
+ }
+
+ public int getOffset() {
+ return offset;
+ }
+
+ public void setOffset(int offset) {
+ this.offset = offset;
+ }
+
+ public int getLimit() {
+ return limit;
+ }
+
+ public void setLimit(int limit) {
+ this.limit = limit;
+ }
+
+ public String getStartTime() {
+ return startTime;
+ }
+
+ public void setStartTime(String startTime) {
+ this.startTime = startTime;
+ }
+
+ public String getEndTime() {
+ return endTime;
+ }
+
+ public void setEndTime(String endTime) {
+ this.endTime = endTime;
+ }
+}
diff --git a/src/main/java/com/emr/entity/EmrOvertimeSet.java b/src/main/java/com/emr/entity/EmrOvertimeSet.java
new file mode 100644
index 0000000..c0634a0
--- /dev/null
+++ b/src/main/java/com/emr/entity/EmrOvertimeSet.java
@@ -0,0 +1,39 @@
+package com.emr.entity;
+
+import java.io.Serializable;
+
+public class EmrOvertimeSet implements Serializable {
+ private Integer id;
+
+ private Integer days;
+
+ private static final long serialVersionUID = 1L;
+
+ public Integer getId() {
+ return id;
+ }
+
+ public void setId(Integer id) {
+ this.id = id;
+ }
+
+ public Integer getDays() {
+ return days;
+ }
+
+ public void setDays(Integer days) {
+ this.days = days;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append(getClass().getSimpleName());
+ sb.append(" [");
+ sb.append("Hash = ").append(hashCode());
+ sb.append(", id=").append(id);
+ sb.append(", days=").append(days);
+ sb.append("]");
+ return sb.toString();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/entity/EmrPatient.java b/src/main/java/com/emr/entity/EmrPatient.java
new file mode 100644
index 0000000..e2080e7
--- /dev/null
+++ b/src/main/java/com/emr/entity/EmrPatient.java
@@ -0,0 +1,49 @@
+package com.emr.entity;
+
+public class EmrPatient {
+ private String fpatno; //记账号,
+ private String fpatfilen;//住院号
+ private String fpattimes;//住院次数
+ private String fpatname;//姓名
+ private String farchieve_dt;//最后更改时间
+
+ public String getFpatno() {
+ return fpatno;
+ }
+
+ public void setFpatno(String fpatno) {
+ this.fpatno = fpatno;
+ }
+
+ public String getFpatfilen() {
+ return fpatfilen;
+ }
+
+ public void setFpatfilen(String fpatfilen) {
+ this.fpatfilen = fpatfilen;
+ }
+
+ public String getFpattimes() {
+ return fpattimes;
+ }
+
+ public void setFpattimes(String fpattimes) {
+ this.fpattimes = fpattimes;
+ }
+
+ public String getFpatname() {
+ return fpatname;
+ }
+
+ public void setFpatname(String fpatname) {
+ this.fpatname = fpatname;
+ }
+
+ public String getFarchieve_dt() {
+ return farchieve_dt;
+ }
+
+ public void setFarchieve_dt(String farchieve_dt) {
+ this.farchieve_dt = farchieve_dt;
+ }
+}
diff --git a/src/main/java/com/emr/entity/Emr_Archive_Detail.java b/src/main/java/com/emr/entity/Emr_Archive_Detail.java
new file mode 100644
index 0000000..ba5e1f3
--- /dev/null
+++ b/src/main/java/com/emr/entity/Emr_Archive_Detail.java
@@ -0,0 +1,103 @@
+package com.emr.entity;
+
+public class Emr_Archive_Detail {
+ private Integer id;
+
+ private String archiveDetailId;
+
+ private String assortId;
+
+ private Integer parentId;
+
+ private String title;
+
+ private String creater;
+
+ private String createTime;
+
+ private String updater;
+
+ private String updateTime;
+
+ private String remaker;
+
+ public Integer getId() {
+ return id;
+ }
+
+ public void setId(Integer id) {
+ this.id = id;
+ }
+
+ public String getArchiveDetailId() {
+ return archiveDetailId;
+ }
+
+ public void setArchiveDetailId(String archiveDetailId) {
+ this.archiveDetailId = archiveDetailId == null ? null : archiveDetailId.trim();
+ }
+
+ public String getAssortId() {
+ return assortId;
+ }
+
+ public void setAssortId(String assortId) {
+ this.assortId = assortId == null ? null : assortId.trim();
+ }
+
+ public Integer getParentId() {
+ return parentId;
+ }
+
+ public void setParentId(Integer parentId) {
+ this.parentId = parentId;
+ }
+
+ public String getTitle() {
+ return title;
+ }
+
+ public void setTitle(String title) {
+ this.title = title == null ? null : title.trim();
+ }
+
+ public String getCreater() {
+ return creater;
+ }
+
+ public void setCreater(String creater) {
+ this.creater = creater == null ? null : creater.trim();
+ }
+
+ public String getCreateTime() {
+ return createTime;
+ }
+
+ public void setCreateTime(String createTime) {
+ this.createTime = createTime == null ? null : createTime.trim();
+ }
+
+ public String getUpdater() {
+ return updater;
+ }
+
+ public void setUpdater(String updater) {
+ this.updater = updater == null ? null : updater.trim();
+ }
+
+ public String getUpdateTime() {
+ return updateTime;
+ }
+
+ public void setUpdateTime(String updateTime) {
+ this.updateTime = updateTime == null ? null : updateTime.trim();
+ }
+
+ public String getRemaker() {
+ return remaker;
+ }
+
+ public void setRemaker(String remaker) {
+ this.remaker = remaker == null ? null : remaker.trim();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/entity/Emr_Dictionary.java b/src/main/java/com/emr/entity/Emr_Dictionary.java
new file mode 100644
index 0000000..9572f1b
--- /dev/null
+++ b/src/main/java/com/emr/entity/Emr_Dictionary.java
@@ -0,0 +1,183 @@
+package com.emr.entity;
+
+public class Emr_Dictionary {
+ private Integer id;
+
+ private String typecode;
+
+ private String typename;
+
+ private String code;
+
+ private String name;
+
+ private String pyCode;
+
+ private String wbCode;
+
+ private String zipCode;
+
+ private String gbCode;
+
+ private Short flag;
+
+ private String cComment;
+
+ private String parentId;
+
+ private Integer effective;
+
+ private String updater;
+
+ private String updateTime;
+
+ private String creater;
+
+ private String createTime;
+
+ private String remark;
+
+ public Integer getId() {
+ return id;
+ }
+
+ public void setId(Integer id) {
+ this.id = id;
+ }
+
+ public String getTypecode() {
+ return typecode;
+ }
+
+ public void setTypecode(String typecode) {
+ this.typecode = typecode == null ? null : typecode.trim();
+ }
+
+ public String getTypename() {
+ return typename;
+ }
+
+ public void setTypename(String typename) {
+ this.typename = typename == null ? null : typename.trim();
+ }
+
+ public String getCode() {
+ return code;
+ }
+
+ public void setCode(String code) {
+ this.code = code == null ? null : code.trim();
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name == null ? null : name.trim();
+ }
+
+ public String getPyCode() {
+ return pyCode;
+ }
+
+ public void setPyCode(String pyCode) {
+ this.pyCode = pyCode == null ? null : pyCode.trim();
+ }
+
+ public String getWbCode() {
+ return wbCode;
+ }
+
+ public void setWbCode(String wbCode) {
+ this.wbCode = wbCode == null ? null : wbCode.trim();
+ }
+
+ public String getZipCode() {
+ return zipCode;
+ }
+
+ public void setZipCode(String zipCode) {
+ this.zipCode = zipCode == null ? null : zipCode.trim();
+ }
+
+ public String getGbCode() {
+ return gbCode;
+ }
+
+ public void setGbCode(String gbCode) {
+ this.gbCode = gbCode == null ? null : gbCode.trim();
+ }
+
+ public Short getFlag() {
+ return flag;
+ }
+
+ public void setFlag(Short flag) {
+ this.flag = flag;
+ }
+
+ public String getcComment() {
+ return cComment;
+ }
+
+ public void setcComment(String cComment) {
+ this.cComment = cComment == null ? null : cComment.trim();
+ }
+
+ public String getParentId() {
+ return parentId;
+ }
+
+ public void setParentId(String parentId) {
+ this.parentId = parentId;
+ }
+
+ public Integer getEffective() {
+ return effective;
+ }
+
+ public void setEffective(Integer effective) {
+ this.effective = effective;
+ }
+
+ public String getUpdater() {
+ return updater;
+ }
+
+ public void setUpdater(String updater) {
+ this.updater = updater == null ? null : updater.trim();
+ }
+
+ public String getUpdateTime() {
+ return updateTime;
+ }
+
+ public void setUpdateTime(String updateTime) {
+ this.updateTime = updateTime == null ? null : updateTime.trim();
+ }
+
+ public String getCreater() {
+ return creater;
+ }
+
+ public void setCreater(String creater) {
+ this.creater = creater == null ? null : creater.trim();
+ }
+
+ public String getCreateTime() {
+ return createTime;
+ }
+
+ public void setCreateTime(String createTime) {
+ this.createTime = createTime == null ? null : createTime.trim();
+ }
+
+ public String getRemark() {
+ return remark;
+ }
+
+ public void setRemark(String remark) {
+ this.remark = remark == null ? null : remark.trim();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/entity/Emr_Fault_Detail.java b/src/main/java/com/emr/entity/Emr_Fault_Detail.java
new file mode 100644
index 0000000..61ec382
--- /dev/null
+++ b/src/main/java/com/emr/entity/Emr_Fault_Detail.java
@@ -0,0 +1,145 @@
+package com.emr.entity;
+
+import java.math.BigDecimal;
+
+public class Emr_Fault_Detail {
+ private Integer id;
+
+ private String archiveDetailId;
+
+ private String assortId;
+
+ private Integer parentId;
+
+ private String content;
+
+ private BigDecimal score;
+
+ private String backContent;
+
+ private String firstTrial;
+
+ private String state;
+
+ private String recallReason;
+
+ private String creater;
+
+ private String createTime;
+
+ private String updater;
+
+ private String updateTime;
+
+ public Integer getId() {
+ return id;
+ }
+
+ public void setId(Integer id) {
+ this.id = id;
+ }
+
+ public String getArchiveDetailId() {
+ return archiveDetailId;
+ }
+
+ public void setArchiveDetailId(String archiveDetailId) {
+ this.archiveDetailId = archiveDetailId == null ? null : archiveDetailId.trim();
+ }
+
+ public String getAssortId() {
+ return assortId;
+ }
+
+ public void setAssortId(String assortId) {
+ this.assortId = assortId == null ? null : assortId.trim();
+ }
+
+ public Integer getParentId() {
+ return parentId;
+ }
+
+ public void setParentId(Integer parentId) {
+ this.parentId = parentId;
+ }
+
+ public String getContent() {
+ return content;
+ }
+
+ public void setContent(String content) {
+ this.content = content == null ? null : content.trim();
+ }
+
+ public BigDecimal getScore() {
+ return score;
+ }
+
+ public void setScore(BigDecimal score) {
+ this.score = score;
+ }
+
+ public String getBackContent() {
+ return backContent;
+ }
+
+ public void setBackContent(String backContent) {
+ this.backContent = backContent == null ? null : backContent.trim();
+ }
+
+ public String getFirstTrial() {
+ return firstTrial;
+ }
+
+ public void setFirstTrial(String firstTrial) {
+ this.firstTrial = firstTrial == null ? null : firstTrial.trim();
+ }
+
+ public String getState() {
+ return state;
+ }
+
+ public void setState(String state) {
+ this.state = state == null ? null : state.trim();
+ }
+
+ public String getRecallReason() {
+ return recallReason;
+ }
+
+ public void setRecallReason(String recallReason) {
+ this.recallReason = recallReason == null ? null : recallReason.trim();
+ }
+
+ public String getCreater() {
+ return creater;
+ }
+
+ public void setCreater(String creater) {
+ this.creater = creater == null ? null : creater.trim();
+ }
+
+ public String getCreateTime() {
+ return createTime;
+ }
+
+ public void setCreateTime(String createTime) {
+ this.createTime = createTime == null ? null : createTime.trim();
+ }
+
+ public String getUpdater() {
+ return updater;
+ }
+
+ public void setUpdater(String updater) {
+ this.updater = updater == null ? null : updater.trim();
+ }
+
+ public String getUpdateTime() {
+ return updateTime;
+ }
+
+ public void setUpdateTime(String updateTime) {
+ this.updateTime = updateTime == null ? null : updateTime.trim();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/entity/Emr_Fault_Detail_Vo.java b/src/main/java/com/emr/entity/Emr_Fault_Detail_Vo.java
new file mode 100644
index 0000000..54c57ce
--- /dev/null
+++ b/src/main/java/com/emr/entity/Emr_Fault_Detail_Vo.java
@@ -0,0 +1,63 @@
+package com.emr.entity;
+
+public class Emr_Fault_Detail_Vo extends Emr_Fault_Detail {
+ private String returntoRole;
+
+ private String returnOperUsername;
+
+ private String checkedDateTime;
+
+ private String changeReason;
+
+ private String status;
+
+ private Integer targetCode;
+
+ public Integer getTargetCode() {
+ return targetCode;
+ }
+
+ public void setTargetCode(Integer targetCode) {
+ this.targetCode = targetCode;
+ }
+
+ public String getStatus() {
+ return status;
+ }
+
+ public void setStatus(String status) {
+ this.status = status;
+ }
+
+ public String getChangeReason() {
+ return changeReason;
+ }
+
+ public void setChangeReason(String changeReason) {
+ this.changeReason = changeReason;
+ }
+
+ public String getCheckedDateTime() {
+ return checkedDateTime;
+ }
+
+ public void setCheckedDateTime(String checkedDateTime) {
+ this.checkedDateTime = checkedDateTime;
+ }
+
+ public String getReturntoRole() {
+ return returntoRole;
+ }
+
+ public void setReturntoRole(String returntoRole) {
+ this.returntoRole = returntoRole;
+ }
+
+ public String getReturnOperUsername() {
+ return returnOperUsername;
+ }
+
+ public void setReturnOperUsername(String returnOperUsername) {
+ this.returnOperUsername = returnOperUsername;
+ }
+}
diff --git a/src/main/java/com/emr/entity/Emr_Fault_Type.java b/src/main/java/com/emr/entity/Emr_Fault_Type.java
new file mode 100644
index 0000000..6fce88e
--- /dev/null
+++ b/src/main/java/com/emr/entity/Emr_Fault_Type.java
@@ -0,0 +1,113 @@
+package com.emr.entity;
+
+public class Emr_Fault_Type {
+ private Integer id;
+
+ private String archiveDetailId;
+
+ private String typeFlag;
+
+ private String typeName;
+
+ private Integer typeSort;
+
+ private Integer effective;
+
+ private String remark;
+
+ private String creater;
+
+ private String createTime;
+
+ private String updater;
+
+ private String updateTime;
+
+ public Integer getId() {
+ return id;
+ }
+
+ public void setId(Integer id) {
+ this.id = id;
+ }
+
+ public String getArchiveDetailId() {
+ return archiveDetailId;
+ }
+
+ public void setArchiveDetailId(String archiveDetailId) {
+ this.archiveDetailId = archiveDetailId;
+ }
+
+ public String getTypeFlag() {
+ return typeFlag;
+ }
+
+ public void setTypeFlag(String typeFlag) {
+ this.typeFlag = typeFlag == null ? null : typeFlag.trim();
+ }
+
+ public String getTypeName() {
+ return typeName;
+ }
+
+ public void setTypeName(String typeName) {
+ this.typeName = typeName == null ? null : typeName.trim();
+ }
+
+ public Integer getTypeSort() {
+ return typeSort;
+ }
+
+ public void setTypeSort(Integer typeSort) {
+ this.typeSort = typeSort;
+ }
+
+ public Integer getEffective() {
+ return effective;
+ }
+
+ public void setEffective(Integer effective) {
+ this.effective = effective;
+ }
+
+ public String getRemark() {
+ return remark;
+ }
+
+ public void setRemark(String remark) {
+ this.remark = remark == null ? null : remark.trim();
+ }
+
+ public String getCreater() {
+ return creater;
+ }
+
+ public void setCreater(String creater) {
+ this.creater = creater == null ? null : creater.trim();
+ }
+
+ public String getCreateTime() {
+ return createTime;
+ }
+
+ public void setCreateTime(String createTime) {
+ this.createTime = createTime == null ? null : createTime.trim();
+ }
+
+ public String getUpdater() {
+ return updater;
+ }
+
+ public void setUpdater(String updater) {
+ this.updater = updater == null ? null : updater.trim();
+ }
+
+ public String getUpdateTime() {
+ return updateTime;
+ }
+
+ public void setUpdateTime(String updateTime) {
+ this.updateTime = updateTime == null ? null : updateTime.trim();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/entity/Emr_Fault_Vo.java b/src/main/java/com/emr/entity/Emr_Fault_Vo.java
new file mode 100644
index 0000000..abbe76e
--- /dev/null
+++ b/src/main/java/com/emr/entity/Emr_Fault_Vo.java
@@ -0,0 +1,315 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/22 12:06
+ * Description:缺陷实体扩展
+ */
+package com.emr.entity;
+
+
+import java.math.BigDecimal;
+
+public class Emr_Fault_Vo {
+ private Integer id;
+
+ private String archiveDetailId;
+
+ private String assortId;
+
+ private Integer parentId;
+
+ private String content;
+
+ private BigDecimal score;
+
+ private String backContent;
+
+ private String firstTrial;
+
+ private String state;
+
+ private String recallReason;
+
+ private String creater;
+
+ private String createTime;
+
+ private String updater;
+
+ private String updateTime;
+
+ private String inpNo;
+
+ private String visitId;
+
+ private String name;
+
+ private String deptName;
+
+ private String dischargeDateTime;
+
+ private String archivestate;
+
+ private String startDate;
+
+ private String endDate;
+
+ private String admissionDateTime;
+
+ private String deptAdmissionTo;
+
+ private String sex;
+
+ private String idNo;
+
+ private String dischargeDisposition;
+
+ private String startDateTo;
+
+ private String endDateTo;
+
+ private String patientId;
+
+ public String getPatientId() {
+ return patientId;
+ }
+
+ public void setPatientId(String patientId) {
+ this.patientId = patientId;
+ }
+
+ public Integer getId() {
+ return id;
+ }
+
+ public void setId(Integer id) {
+ this.id = id;
+ }
+
+ public String getArchiveDetailId() {
+ return archiveDetailId;
+ }
+
+ public void setArchiveDetailId(String archiveDetailId) {
+ this.archiveDetailId = archiveDetailId == null ? null : archiveDetailId.trim();
+ }
+
+ public String getAssortId() {
+ return assortId;
+ }
+
+ public void setAssortId(String assortId) {
+ this.assortId = assortId == null ? null : assortId.trim();
+ }
+
+ public Integer getParentId() {
+ return parentId;
+ }
+
+ public void setParentId(Integer parentId) {
+ this.parentId = parentId;
+ }
+
+ public String getContent() {
+ return content;
+ }
+
+ public void setContent(String content) {
+ this.content = content == null ? null : content.trim();
+ }
+
+ public BigDecimal getScore() {
+ return score;
+ }
+
+ public void setScore(BigDecimal score) {
+ this.score = score;
+ }
+
+ public String getBackContent() {
+ return backContent;
+ }
+
+ public void setBackContent(String backContent) {
+ this.backContent = backContent == null ? null : backContent.trim();
+ }
+
+ public String getFirstTrial() {
+ return firstTrial;
+ }
+
+ public void setFirstTrial(String firstTrial) {
+ this.firstTrial = firstTrial == null ? null : firstTrial.trim();
+ }
+
+ public String getState() {
+ return state;
+ }
+
+ public void setState(String state) {
+ this.state = state == null ? null : state.trim();
+ }
+
+ public String getRecallReason() {
+ return recallReason;
+ }
+
+ public void setRecallReason(String recallReason) {
+ this.recallReason = recallReason == null ? null : recallReason.trim();
+ }
+
+ public String getCreater() {
+ return creater;
+ }
+
+ public void setCreater(String creater) {
+ this.creater = creater == null ? null : creater.trim();
+ }
+
+ public String getCreateTime() {
+ return createTime;
+ }
+
+ public void setCreateTime(String createTime) {
+ this.createTime = createTime == null ? null : createTime.trim();
+ }
+
+ public String getUpdater() {
+ return updater;
+ }
+
+ public void setUpdater(String updater) {
+ this.updater = updater == null ? null : updater.trim();
+ }
+
+ public String getUpdateTime() {
+ return updateTime;
+ }
+
+ public void setUpdateTime(String updateTime) {
+ this.updateTime = updateTime == null ? null : updateTime.trim();
+ }
+
+ public String getInpNo() {
+ return inpNo;
+ }
+
+ public void setInpNo(String inpNo) {
+ this.inpNo = inpNo == null ? null : inpNo.trim();
+ }
+
+ public String getVisitId() {
+ return visitId;
+ }
+
+ public void setVisitId(String visitId) {
+ this.visitId = visitId == null ? null : visitId.trim();
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name == null ? null : name.trim();
+ }
+
+ public String getDeptName() {
+ return deptName;
+ }
+
+ public void setDeptName(String deptName) {
+ this.deptName = deptName == null ? null : deptName.trim();
+ }
+
+ public String getDischargeDateTime() {
+ return dischargeDateTime;
+ }
+
+ public void setDischargeDateTime(String dischargeDateTime) {
+ this.dischargeDateTime = dischargeDateTime == null ? null : dischargeDateTime.trim();
+ }
+
+ public String getArchivestate() {
+ return archivestate;
+ }
+
+ public void setArchivestate(String archivestate) {
+ this.archivestate = archivestate == null ? null : archivestate.trim();
+ }
+
+ public String getStartDate() {
+ return startDate;
+ }
+
+ public void setStartDate(String startDate) {
+ this.startDate = startDate == null ? null : startDate.trim();
+ }
+
+ public String getEndDate() {
+ return endDate;
+ }
+
+ public void setEndDate(String endDate) {
+ this.endDate = endDate == null ? null : endDate.trim();
+ }
+
+ public String getAdmissionDateTime() {
+ return admissionDateTime;
+ }
+
+ public void setAdmissionDateTime(String admissionDateTime) {
+ this.admissionDateTime = admissionDateTime == null ? null : admissionDateTime.trim();
+ }
+
+ public String getDeptAdmissionTo() {
+ return deptAdmissionTo;
+ }
+
+ public void setDeptAdmissionTo(String deptAdmissionTo) {
+ this.deptAdmissionTo = deptAdmissionTo == null ? null : deptAdmissionTo.trim();
+ }
+
+ public String getSex() {
+ return sex;
+ }
+
+ public void setSex(String sex) {
+ this.sex = sex == null ? null : sex.trim();
+ }
+
+ public String getIdNo() {
+ return idNo;
+ }
+
+ public void setIdNo(String idNo) {
+ this.idNo = idNo == null ? null : idNo.trim();
+ }
+
+ public String getDischargeDisposition() {
+ return dischargeDisposition;
+ }
+
+ public void setDischargeDisposition(String dischargeDisposition) {
+ this.dischargeDisposition = dischargeDisposition == null ? null : dischargeDisposition.trim();
+ }
+
+ public String getStartDateTo() {
+ return startDateTo;
+ }
+
+ public void setStartDateTo(String startDateTo) {
+ this.startDateTo = startDateTo == null ? null : startDateTo.trim();
+ }
+
+ public String getEndDateTo() {
+ return endDateTo;
+ }
+
+ public void setEndDateTo(String endDateTo) {
+ this.endDateTo = endDateTo == null ? null : endDateTo.trim();
+ }
+
+}
+
+
diff --git a/src/main/java/com/emr/entity/Emr_Log.java b/src/main/java/com/emr/entity/Emr_Log.java
new file mode 100644
index 0000000..bebe967
--- /dev/null
+++ b/src/main/java/com/emr/entity/Emr_Log.java
@@ -0,0 +1,93 @@
+package com.emr.entity;
+
+public class Emr_Log {
+ private Integer logId;
+
+ private String logTitle;
+
+ private String logContent;
+
+ private String ip;
+
+ private Integer sysId;
+
+ private String sysFlag;
+
+ private String creater;
+
+ private String createDate;
+
+ private String remark;
+
+ public Integer getLogId() {
+ return logId;
+ }
+
+ public void setLogId(Integer logId) {
+ this.logId = logId;
+ }
+
+ public String getLogTitle() {
+ return logTitle;
+ }
+
+ public void setLogTitle(String logTitle) {
+ this.logTitle = logTitle == null ? null : logTitle.trim();
+ }
+
+ public String getLogContent() {
+ return logContent;
+ }
+
+ public void setLogContent(String logContent) {
+ this.logContent = logContent == null ? null : logContent.trim();
+ }
+
+ public String getIp() {
+ return ip;
+ }
+
+ public void setIp(String ip) {
+ this.ip = ip;
+ }
+
+ public Integer getSysId() {
+ return sysId;
+ }
+
+ public void setSysId(Integer sysId) {
+ this.sysId = sysId;
+ }
+
+ public String getSysFlag() {
+ return sysFlag;
+ }
+
+ public void setSysFlag(String sysFlag) {
+ this.sysFlag = sysFlag == null ? null : sysFlag.trim();
+ }
+
+ public String getCreateDate() {
+ return createDate;
+ }
+
+ public void setCreateDate(String createDate) {
+ this.createDate = createDate == null ? null : createDate.trim();
+ }
+
+ public String getCreater() {
+ return creater;
+ }
+
+ public void setCreater(String creater) {
+ this.creater = creater == null ? null : creater.trim();
+ }
+
+ public String getRemark() {
+ return remark;
+ }
+
+ public void setRemark(String remark) {
+ this.remark = remark == null ? null : remark.trim();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/entity/Emr_Log_Vo.java b/src/main/java/com/emr/entity/Emr_Log_Vo.java
new file mode 100644
index 0000000..6479ec5
--- /dev/null
+++ b/src/main/java/com/emr/entity/Emr_Log_Vo.java
@@ -0,0 +1,231 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/24 17:40
+ * Description:
+ */
+package com.emr.entity;
+
+public class Emr_Log_Vo {
+ private String archiveDetailId;
+
+ private String state;
+
+ private String recallReason;
+
+ private String inpNo;
+
+ private String visitId;
+
+ private String name;
+
+ private String archivestate;
+
+ private String startDate;
+
+ private String endDate;
+
+ private String admissionDateTime;
+
+ private String deptAdmissionTo;
+
+ private String sex;
+
+ private String idNo;
+
+ private Integer logId;
+
+ private String logTitle;
+
+ private String logContent;
+
+ private String ip;
+
+ private Integer sysId;
+
+ private String sysFlag;
+
+ private String creater;
+
+ private String createDate;
+
+ private String remark;
+
+ public String getArchiveDetailId() {
+ return archiveDetailId;
+ }
+
+ public void setArchiveDetailId(String archiveDetailId) {
+ this.archiveDetailId = archiveDetailId == null ? null : archiveDetailId.trim();
+ }
+
+ public String getState() {
+ return state;
+ }
+
+ public void setState(String state) {
+ this.state = state == null ? null : state.trim();
+ }
+
+ public String getRecallReason() {
+ return recallReason;
+ }
+
+ public void setRecallReason(String recallReason) {
+ this.recallReason = recallReason == null ? null : recallReason.trim();
+ }
+
+ public String getInpNo() {
+ return inpNo;
+ }
+
+ public void setInpNo(String inpNo) {
+ this.inpNo = inpNo == null ? null : inpNo.trim();
+ }
+
+ public String getVisitId() {
+ return visitId;
+ }
+
+ public void setVisitId(String visitId) {
+ this.visitId = visitId == null ? null : visitId.trim();
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name == null ? null : name.trim();
+ }
+
+ public String getArchivestate() {
+ return archivestate;
+ }
+
+ public void setArchivestate(String archivestate) {
+ this.archivestate = archivestate == null ? null : archivestate.trim();
+ }
+
+ public String getStartDate() {
+ return startDate;
+ }
+
+ public void setStartDate(String startDate) {
+ this.startDate = startDate == null ? null : startDate.trim();
+ }
+
+ public String getEndDate() {
+ return endDate;
+ }
+
+ public void setEndDate(String endDate) {
+ this.endDate = endDate == null ? null : endDate.trim();
+ }
+
+ public String getSex() {
+ return sex;
+ }
+
+ public void setSex(String sex) {
+ this.sex = sex == null ? null : sex.trim();
+ }
+
+ public String getIdNo() {
+ return idNo;
+ }
+
+ public void setIdNo(String idNo) {
+ this.idNo = idNo == null ? null : idNo.trim();
+ }
+
+ public String getAdmissionDateTime() {
+ return admissionDateTime;
+ }
+
+ public void setAdmissionDateTime(String admissionDateTime) {
+ this.admissionDateTime = admissionDateTime == null ? null : admissionDateTime.trim();
+ }
+
+ public String getDeptAdmissionTo() {
+ return deptAdmissionTo;
+ }
+
+ public void setDeptAdmissionTo(String deptAdmissionTo) {
+ this.deptAdmissionTo = deptAdmissionTo == null ? null : deptAdmissionTo.trim();
+ }
+
+ public Integer getLogId() {
+ return logId;
+ }
+
+ public void setLogId(Integer logId) {
+ this.logId = logId;
+ }
+
+ public String getLogTitle() {
+ return logTitle;
+ }
+
+ public void setLogTitle(String logTitle) {
+ this.logTitle = logTitle == null ? null : logTitle.trim();
+ }
+
+ public String getLogContent() {
+ return logContent;
+ }
+
+ public void setLogContent(String logContent) {
+ this.logContent = logContent == null ? null : logContent.trim();
+ }
+
+ public String getIp() {
+ return ip;
+ }
+
+ public void setIp(String ip) {
+ this.ip = ip;
+ }
+
+ public Integer getSysId() {
+ return sysId;
+ }
+
+ public void setSysId(Integer sysId) {
+ this.sysId = sysId;
+ }
+
+ public String getSysFlag() {
+ return sysFlag;
+ }
+
+ public void setSysFlag(String sysFlag) {
+ this.sysFlag = sysFlag == null ? null : sysFlag.trim();
+ }
+
+ public String getCreateDate() {
+ return createDate;
+ }
+
+ public void setCreateDate(String createDate) {
+ this.createDate = createDate == null ? null : createDate.trim();
+ }
+
+ public String getCreater() {
+ return creater;
+ }
+
+ public void setCreater(String creater) {
+ this.creater = creater == null ? null : creater.trim();
+ }
+
+ public String getRemark() {
+ return remark;
+ }
+
+ public void setRemark(String remark) {
+ this.remark = remark == null ? null : remark.trim();
+ }
+}
+
+
diff --git a/src/main/java/com/emr/entity/Emr_Picture.java b/src/main/java/com/emr/entity/Emr_Picture.java
new file mode 100644
index 0000000..38b351c
--- /dev/null
+++ b/src/main/java/com/emr/entity/Emr_Picture.java
@@ -0,0 +1,153 @@
+package com.emr.entity;
+
+public class Emr_Picture {
+ private String id;
+
+ private String relationId;
+
+ private String assortId;
+
+ private Integer parentId;
+
+ private String typeFlag;
+
+ private String typeName;
+
+ private String minPicture;
+
+ private String maxPicture;
+
+ private Integer pictureSort;
+
+ private Integer effective;
+
+ private String creater;
+
+ private String createTime;
+
+ private String updater;
+
+ private String updateTime;
+
+ private String remark;
+
+ public String getId() {
+ return id;
+ }
+
+ public void setId(String id) {
+ this.id = id == null ? null : id.trim();
+ }
+
+ public String getRelationId() {
+ return relationId;
+ }
+
+ public void setRelationId(String relationId) {
+ this.relationId = relationId == null ? null : relationId.trim();
+ }
+
+ public String getAssortId() {
+ return assortId;
+ }
+
+ public void setAssortId(String assortId) {
+ this.assortId = assortId == null ? null : assortId.trim();
+ }
+
+ public Integer getParentId() {
+ return parentId;
+ }
+
+ public void setParentId(Integer parentId) {
+ this.parentId = parentId;
+ }
+
+ public String getTypeFlag() {
+ return typeFlag;
+ }
+
+ public void setTypeFlag(String typeFlag) {
+ this.typeFlag = typeFlag == null ? null : typeFlag.trim();
+ }
+
+ public String getTypeName() {
+ return typeName;
+ }
+
+ public void setTypeName(String typeName) {
+ this.typeName = typeName == null ? null : typeName.trim();
+ }
+
+ public String getMinPicture() {
+ return minPicture;
+ }
+
+ public void setMinPicture(String minPicture) {
+ this.minPicture = minPicture == null ? null : minPicture.trim();
+ }
+
+ public String getMaxPicture() {
+ return maxPicture;
+ }
+
+ public void setMaxPicture(String maxPicture) {
+ this.maxPicture = maxPicture == null ? null : maxPicture.trim();
+ }
+
+ public Integer getPictureSort() {
+ return pictureSort;
+ }
+
+ public void setPictureSort(Integer pictureSort) {
+ this.pictureSort = pictureSort;
+ }
+
+ public Integer getEffective() {
+ return effective;
+ }
+
+ public void setEffective(Integer effective) {
+ this.effective = effective;
+ }
+
+ public String getCreater() {
+ return creater;
+ }
+
+ public void setCreater(String creater) {
+ this.creater = creater == null ? null : creater.trim();
+ }
+
+ public String getCreateTime() {
+ return createTime;
+ }
+
+ public void setCreateTime(String createTime) {
+ this.createTime = createTime == null ? null : createTime.trim();
+ }
+
+ public String getUpdater() {
+ return updater;
+ }
+
+ public void setUpdater(String updater) {
+ this.updater = updater == null ? null : updater.trim();
+ }
+
+ public String getUpdateTime() {
+ return updateTime;
+ }
+
+ public void setUpdateTime(String updateTime) {
+ this.updateTime = updateTime == null ? null : updateTime.trim();
+ }
+
+ public String getRemark() {
+ return remark;
+ }
+
+ public void setRemark(String remark) {
+ this.remark = remark == null ? null : remark.trim();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/entity/File_Vo.java b/src/main/java/com/emr/entity/File_Vo.java
new file mode 100644
index 0000000..7dcdc65
--- /dev/null
+++ b/src/main/java/com/emr/entity/File_Vo.java
@@ -0,0 +1,32 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/8/2 18:13
+ * Description:文件实体
+ */
+package com.emr.entity;
+
+public class File_Vo {
+ //文件地址
+ private String fileSrc;
+ //文件类别
+ private String selectVal;
+
+ public String getFileSrc() {
+ return fileSrc;
+ }
+
+ public void setFileSrc(String fileSrc) {
+ this.fileSrc = fileSrc == null ? null : fileSrc.trim();
+ }
+
+ public String getSelectVal() {
+ return selectVal;
+ }
+
+ public void setSelectVal(String selectVal) {
+ this.selectVal = selectVal == null ? null : selectVal.trim();
+ }
+}
+
+
diff --git a/src/main/java/com/emr/entity/OffsetLimitPage.java b/src/main/java/com/emr/entity/OffsetLimitPage.java
new file mode 100644
index 0000000..3f60f6a
--- /dev/null
+++ b/src/main/java/com/emr/entity/OffsetLimitPage.java
@@ -0,0 +1,47 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 19:49
+ * Description:
+ */
+package com.emr.entity;
+
+import com.github.pagehelper.Page;
+
+import java.util.List;
+
+public class OffsetLimitPage {
+ private Long total;
+ private List rows;
+
+ public Long getTotal() {
+ return total;
+ }
+
+ public void setTotal(Long total) {
+ this.total = total;
+ }
+
+ public List getRows() {
+ return rows;
+ }
+
+ public void setRows(List rows) {
+ this.rows = rows;
+ }
+
+ public OffsetLimitPage() {
+
+ }
+
+ public OffsetLimitPage(List rows, Long total) {
+ this.rows = rows;
+ this.total = total;
+ }
+
+ public OffsetLimitPage(Page rows) {
+ this(rows, rows.getTotal());
+ }
+}
+
+
diff --git a/src/main/java/com/emr/entity/Power_User.java b/src/main/java/com/emr/entity/Power_User.java
new file mode 100644
index 0000000..b12c642
--- /dev/null
+++ b/src/main/java/com/emr/entity/Power_User.java
@@ -0,0 +1,195 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/8/22 13:48
+ * Description:
+ */
+package com.emr.entity;
+
+import java.util.Set;
+
+public class Power_User {
+ /**
+ * 用户id
+ */
+ private Integer userId;
+ /**
+ * 用户名
+ */
+ private String userName;
+ /**
+ * 性别1为女0为男
+ */
+ private Integer userSex;
+ /**
+ * 年龄
+ */
+ private Integer userAge;
+ /**
+ * 手机号
+ */
+ private String userTel;
+ /**
+ * 电子邮件
+ */
+ private String userEmail;
+ /**
+ * 职位
+ */
+ private String userPosition;
+ /**
+ * 角色id
+ */
+ private Integer roleId;
+ /**
+ * 是否有效
+ */
+ private Integer effective;
+ /**
+ * 创建时间
+ */
+ private String createDate;
+ /**
+ * 创建者
+ */
+ private String creater;
+ /**
+ * 修改时间
+ */
+ private String updateDate;
+ /**
+ * 修改者
+ */
+ private String updater;
+ /**
+ * 备注
+ */
+ private String remark;
+ /**
+ * 菜单以及功能权限标识集合
+ */
+ private Set menus;
+
+ public Integer getUserId() {
+ return userId;
+ }
+
+ public void setUserId(Integer userId) {
+ this.userId = userId;
+ }
+
+ public String getUserName() {
+ return userName;
+ }
+
+ public void setUserName(String userName) {
+ this.userName = userName;
+ }
+
+ public Integer getUserSex() {
+ return userSex;
+ }
+
+ public void setUserSex(Integer userSex) {
+ this.userSex = userSex;
+ }
+
+ public Integer getUserAge() {
+ return userAge;
+ }
+
+ public void setUserAge(Integer userAge) {
+ this.userAge = userAge;
+ }
+
+ public String getUserTel() {
+ return userTel;
+ }
+
+ public void setUserTel(String userTel) {
+ this.userTel = userTel;
+ }
+
+ public String getUserEmail() {
+ return userEmail;
+ }
+
+ public void setUserEmail(String userEmail) {
+ this.userEmail = userEmail;
+ }
+
+ public String getUserPosition() {
+ return userPosition;
+ }
+
+ public void setUserPosition(String userPosition) {
+ this.userPosition = userPosition;
+ }
+
+ public Integer getRoleId() {
+ return roleId;
+ }
+
+ public void setRoleId(Integer roleId) {
+ this.roleId = roleId;
+ }
+
+ public Integer getEffective() {
+ return effective;
+ }
+
+ public void setEffective(Integer effective) {
+ this.effective = effective;
+ }
+
+ public String getCreateDate() {
+ return createDate;
+ }
+
+ public void setCreateDate(String createDate) {
+ this.createDate = createDate;
+ }
+
+ public String getCreater() {
+ return creater;
+ }
+
+ public void setCreater(String creater) {
+ this.creater = creater;
+ }
+
+ public String getUpdateDate() {
+ return updateDate;
+ }
+
+ public void setUpdateDate(String updateDate) {
+ this.updateDate = updateDate;
+ }
+
+ public String getUpdater() {
+ return updater;
+ }
+
+ public void setUpdater(String updater) {
+ this.updater = updater;
+ }
+
+ public String getRemark() {
+ return remark;
+ }
+
+ public void setRemark(String remark) {
+ this.remark = remark;
+ }
+
+ public Set getMenus() {
+ return menus;
+ }
+
+ public void setMenus(Set menus) {
+ this.menus = menus;
+ }
+
+}
+
+
diff --git a/src/main/java/com/emr/entity/ReturnAsmx.java b/src/main/java/com/emr/entity/ReturnAsmx.java
new file mode 100644
index 0000000..2ff2dfb
--- /dev/null
+++ b/src/main/java/com/emr/entity/ReturnAsmx.java
@@ -0,0 +1,30 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/11/11 11:45
+ * Description:
+ */
+package com.emr.entity;
+
+public class ReturnAsmx {
+ private String resultCode;
+ private String resultDesc;
+
+ public String getResultCode() {
+ return resultCode;
+ }
+
+ public void setResultCode(String resultCode) {
+ this.resultCode = resultCode;
+ }
+
+ public String getResultDesc() {
+ return resultDesc;
+ }
+
+ public void setResultDesc(String resultDesc) {
+ this.resultDesc = resultDesc;
+ }
+}
+
+
diff --git a/src/main/java/com/emr/entity/TPrintinfo.java b/src/main/java/com/emr/entity/TPrintinfo.java
new file mode 100644
index 0000000..6eec123
--- /dev/null
+++ b/src/main/java/com/emr/entity/TPrintinfo.java
@@ -0,0 +1,39 @@
+package com.emr.entity;
+
+import java.io.Serializable;
+
+public class TPrintinfo implements Serializable {
+ private String patientId;
+
+ private String isprint;
+
+ private static final long serialVersionUID = 1L;
+
+ public String getPatientId() {
+ return patientId;
+ }
+
+ public void setPatientId(String patientId) {
+ this.patientId = patientId == null ? null : patientId.trim();
+ }
+
+ public String getIsprint() {
+ return isprint;
+ }
+
+ public void setIsprint(String isprint) {
+ this.isprint = isprint == null ? null : isprint.trim();
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append(getClass().getSimpleName());
+ sb.append(" [");
+ sb.append("Hash = ").append(hashCode());
+ sb.append(", patientId=").append(patientId);
+ sb.append(", isprint=").append(isprint);
+ sb.append("]");
+ return sb.toString();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/entity/TUuInfo.java b/src/main/java/com/emr/entity/TUuInfo.java
new file mode 100644
index 0000000..c197785
--- /dev/null
+++ b/src/main/java/com/emr/entity/TUuInfo.java
@@ -0,0 +1,153 @@
+package com.emr.entity;
+
+public class TUuInfo {
+ private String patientId;
+
+ private String inpNo;
+
+ private String visitId;
+
+ private String hzname;
+
+ private String sex;
+
+ private String dischargeDateTime;
+
+ private String admissionDateTime;
+
+ private String deptName;
+
+ private String doctorDept;
+
+ private String checkedDoctor;
+
+ private String checkedDatetime;
+
+ private String doctorInCharge;
+
+ private String sys;
+
+ private String uuname;
+
+ private String uploaddatetime;
+
+ public String getPatientId() {
+ return patientId;
+ }
+
+ public void setPatientId(String patientId) {
+ this.patientId = patientId == null ? null : patientId.trim();
+ }
+
+ public String getInpNo() {
+ return inpNo;
+ }
+
+ public void setInpNo(String inpNo) {
+ this.inpNo = inpNo == null ? null : inpNo.trim();
+ }
+
+ public String getVisitId() {
+ return visitId;
+ }
+
+ public void setVisitId(String visitId) {
+ this.visitId = visitId == null ? null : visitId.trim();
+ }
+
+ public String getHzname() {
+ return hzname;
+ }
+
+ public void setHzname(String hzname) {
+ this.hzname = hzname == null ? null : hzname.trim();
+ }
+
+ public String getSex() {
+ return sex;
+ }
+
+ public void setSex(String sex) {
+ this.sex = sex == null ? null : sex.trim();
+ }
+
+ public String getDischargeDateTime() {
+ return dischargeDateTime;
+ }
+
+ public void setDischargeDateTime(String dischargeDateTime) {
+ this.dischargeDateTime = dischargeDateTime == null ? null : dischargeDateTime.trim();
+ }
+
+ public String getAdmissionDateTime() {
+ return admissionDateTime;
+ }
+
+ public void setAdmissionDateTime(String admissionDateTime) {
+ this.admissionDateTime = admissionDateTime == null ? null : admissionDateTime.trim();
+ }
+
+ public String getDeptName() {
+ return deptName;
+ }
+
+ public void setDeptName(String deptName) {
+ this.deptName = deptName == null ? null : deptName.trim();
+ }
+
+ public String getDoctorDept() {
+ return doctorDept;
+ }
+
+ public void setDoctorDept(String doctorDept) {
+ this.doctorDept = doctorDept == null ? null : doctorDept.trim();
+ }
+
+ public String getCheckedDoctor() {
+ return checkedDoctor;
+ }
+
+ public void setCheckedDoctor(String checkedDoctor) {
+ this.checkedDoctor = checkedDoctor == null ? null : checkedDoctor.trim();
+ }
+
+ public String getCheckedDatetime() {
+ return checkedDatetime;
+ }
+
+ public void setCheckedDatetime(String checkedDatetime) {
+ this.checkedDatetime = checkedDatetime == null ? null : checkedDatetime.trim();
+ }
+
+ public String getDoctorInCharge() {
+ return doctorInCharge;
+ }
+
+ public void setDoctorInCharge(String doctorInCharge) {
+ this.doctorInCharge = doctorInCharge == null ? null : doctorInCharge.trim();
+ }
+
+ public String getSys() {
+ return sys;
+ }
+
+ public void setSys(String sys) {
+ this.sys = sys == null ? null : sys.trim();
+ }
+
+ public String getUuname() {
+ return uuname;
+ }
+
+ public void setUuname(String uuname) {
+ this.uuname = uuname == null ? null : uuname.trim();
+ }
+
+ public String getUploaddatetime() {
+ return uploaddatetime;
+ }
+
+ public void setUploaddatetime(String uploaddatetime) {
+ this.uploaddatetime = uploaddatetime == null ? null : uploaddatetime.trim();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/entity/TUuPrint.java b/src/main/java/com/emr/entity/TUuPrint.java
new file mode 100644
index 0000000..d273ea4
--- /dev/null
+++ b/src/main/java/com/emr/entity/TUuPrint.java
@@ -0,0 +1,135 @@
+package com.emr.entity;
+
+import java.util.Date;
+
+public class TUuPrint {
+ private String patientId;
+
+ private String inpNo;
+
+ private String visitId;
+
+ private String hzname;
+
+ private String sex;
+
+ private String admissionDateTime;
+
+ private String dischargeDateTime;
+
+ private String name;
+
+ private String doctorInCharge;
+
+ private String filetitle;
+
+ private String cpyuser;
+
+ private Date cpytime;
+
+ private Integer flag;
+
+ public String getPatientId() {
+ return patientId;
+ }
+
+ public void setPatientId(String patientId) {
+ this.patientId = patientId == null ? null : patientId.trim();
+ }
+
+ public String getInpNo() {
+ return inpNo;
+ }
+
+ public void setInpNo(String inpNo) {
+ this.inpNo = inpNo == null ? null : inpNo.trim();
+ }
+
+ public String getVisitId() {
+ return visitId;
+ }
+
+ public void setVisitId(String visitId) {
+ this.visitId = visitId == null ? null : visitId.trim();
+ }
+
+ public String getHzname() {
+ return hzname;
+ }
+
+ public void setHzname(String hzname) {
+ this.hzname = hzname == null ? null : hzname.trim();
+ }
+
+ public String getSex() {
+ return sex;
+ }
+
+ public void setSex(String sex) {
+ this.sex = sex == null ? null : sex.trim();
+ }
+
+ public String getAdmissionDateTime() {
+ return admissionDateTime;
+ }
+
+ public void setAdmissionDateTime(String admissionDateTime) {
+ this.admissionDateTime = admissionDateTime == null ? null : admissionDateTime.trim();
+ }
+
+ public String getDischargeDateTime() {
+ return dischargeDateTime;
+ }
+
+ public void setDischargeDateTime(String dischargeDateTime) {
+ this.dischargeDateTime = dischargeDateTime == null ? null : dischargeDateTime.trim();
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name == null ? null : name.trim();
+ }
+
+ public String getDoctorInCharge() {
+ return doctorInCharge;
+ }
+
+ public void setDoctorInCharge(String doctorInCharge) {
+ this.doctorInCharge = doctorInCharge == null ? null : doctorInCharge.trim();
+ }
+
+ public String getFiletitle() {
+ return filetitle;
+ }
+
+ public void setFiletitle(String filetitle) {
+ this.filetitle = filetitle == null ? null : filetitle.trim();
+ }
+
+ public String getCpyuser() {
+ return cpyuser;
+ }
+
+ public void setCpyuser(String cpyuser) {
+ this.cpyuser = cpyuser == null ? null : cpyuser.trim();
+ }
+
+ public Date getCpytime() {
+ return cpytime;
+ }
+
+ public void setCpytime(Date cpytime) {
+ this.cpytime = cpytime;
+ }
+
+ public Integer getFlag() {
+ return flag;
+ }
+
+ public void setFlag(Integer flag) {
+ this.flag = flag;
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/entity/Upload_File_Vo.java b/src/main/java/com/emr/entity/Upload_File_Vo.java
new file mode 100644
index 0000000..07b0b99
--- /dev/null
+++ b/src/main/java/com/emr/entity/Upload_File_Vo.java
@@ -0,0 +1,33 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/8/2 18:09
+ * Description:上传文件实体
+ */
+package com.emr.entity;
+
+import java.util.List;
+
+public class Upload_File_Vo {
+ private String masterID;
+
+ private List list;
+
+ public String getMasterID() {
+ return masterID;
+ }
+
+ public void setMasterID(String masterID) {
+ this.masterID = masterID == null ? null : masterID.trim();
+ }
+
+ public List getList() {
+ return list;
+ }
+
+ public void setList(List list) {
+ this.list = list;
+ }
+}
+
+
diff --git a/src/main/java/com/emr/entity/V_Count.java b/src/main/java/com/emr/entity/V_Count.java
new file mode 100644
index 0000000..e46b112
--- /dev/null
+++ b/src/main/java/com/emr/entity/V_Count.java
@@ -0,0 +1,142 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/9/2 14:22
+ * Description:统计
+ */
+package com.emr.entity;
+
+public class V_Count {
+ private String deptCode;
+
+ private String deptName;
+
+ private Integer inNum;
+
+ private Integer outNum;
+
+ private Integer fileNum;
+
+ private Integer unfileNum;
+
+ private Integer deathNum;
+
+ private String fileRate;
+
+ private String day2Rate;
+
+ private String day3Rate;
+
+ private String day7Rate;
+
+ private String startDate;
+
+ private String endDate;
+
+
+ public String getDeptCode() {
+ return deptCode;
+ }
+
+ public void setDeptCode(String deptCode) {
+ this.deptCode = deptCode;
+ }
+
+ public String getDeptName() {
+ return deptName;
+ }
+
+ public void setDeptName(String deptName) {
+ this.deptName = deptName;
+ }
+
+ public Integer getInNum() {
+ return inNum;
+ }
+
+ public void setInNum(Integer inNum) {
+ this.inNum = inNum;
+ }
+
+ public Integer getOutNum() {
+ return outNum;
+ }
+
+ public void setOutNum(Integer outNum) {
+ this.outNum = outNum;
+ }
+
+ public Integer getFileNum() {
+ return fileNum;
+ }
+
+ public void setFileNum(Integer fileNum) {
+ this.fileNum = fileNum;
+ }
+
+ public Integer getUnfileNum() {
+ return unfileNum;
+ }
+
+ public void setUnfileNum(Integer unfileNum) {
+ this.unfileNum = unfileNum;
+ }
+
+ public Integer getDeathNum() {
+ return deathNum;
+ }
+
+ public void setDeathNum(Integer deathNum) {
+ this.deathNum = deathNum;
+ }
+
+ public String getFileRate() {
+ return fileRate;
+ }
+
+ public void setFileRate(String fileRate) {
+ this.fileRate = fileRate;
+ }
+
+ public String getDay2Rate() {
+ return day2Rate;
+ }
+
+ public void setDay2Rate(String day2Rate) {
+ this.day2Rate = day2Rate;
+ }
+
+ public String getDay3Rate() {
+ return day3Rate;
+ }
+
+ public void setDay3Rate(String day3Rate) {
+ this.day3Rate = day3Rate;
+ }
+
+ public String getDay7Rate() {
+ return day7Rate;
+ }
+
+ public void setDay7Rate(String day7Rate) {
+ this.day7Rate = day7Rate;
+ }
+
+ public String getStartDate() {
+ return startDate;
+ }
+
+ public void setStartDate(String startDate) {
+ this.startDate = startDate;
+ }
+
+ public String getEndDate() {
+ return endDate;
+ }
+
+ public void setEndDate(String endDate) {
+ this.endDate = endDate;
+ }
+}
+
+
diff --git a/src/main/java/com/emr/entity/Zd_Assort.java b/src/main/java/com/emr/entity/Zd_Assort.java
new file mode 100644
index 0000000..1766ca6
--- /dev/null
+++ b/src/main/java/com/emr/entity/Zd_Assort.java
@@ -0,0 +1,43 @@
+package com.emr.entity;
+
+public class Zd_Assort {
+ private String assortId;
+
+ private String assortName;
+
+ private Short assortSort;
+
+ private String printFlag;
+
+ public String getAssortId() {
+ return assortId;
+ }
+
+ public void setAssortId(String assortId) {
+ this.assortId = assortId == null ? null : assortId.trim();
+ }
+
+ public String getAssortName() {
+ return assortName;
+ }
+
+ public void setAssortName(String assortName) {
+ this.assortName = assortName == null ? null : assortName.trim();
+ }
+
+ public Short getAssortSort() {
+ return assortSort;
+ }
+
+ public void setAssortSort(Short assortSort) {
+ this.assortSort = assortSort;
+ }
+
+ public String getPrintFlag() {
+ return printFlag;
+ }
+
+ public void setPrintFlag(String printFlag) {
+ this.printFlag = printFlag == null ? null : printFlag.trim();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/emr/service/Archive_DetailService.java b/src/main/java/com/emr/service/Archive_DetailService.java
new file mode 100644
index 0000000..71158c4
--- /dev/null
+++ b/src/main/java/com/emr/service/Archive_DetailService.java
@@ -0,0 +1,87 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 15:27
+ * Description:病历文件信息表
+ */
+package com.emr.service;
+
+import com.emr.entity.Archive_Detail;
+import com.emr.entity.Archive_Detail_Vo;
+import com.emr.entity.OffsetLimitPage;
+import org.apache.ibatis.annotations.Param;
+import org.springframework.web.bind.annotation.PathVariable;
+
+import javax.servlet.http.HttpServletResponse;
+import java.util.List;
+
+public interface Archive_DetailService {
+ /**
+ * 根据条件查询分段目录
+ *
+ * @param record
+ * @return
+ */
+ List selectByClo(Archive_Detail_Vo record);
+
+ /**
+ * 根据条件查询分段详情列表分页
+ *
+ * @param record
+ * @return
+ */
+ OffsetLimitPage detailByClo(Archive_Detail_Vo record, Integer offset, Integer limit);
+
+ /**
+ * 根据条件修改分段信息
+ *
+ * @param record
+ * @return
+ */
+ int updateCloById(Archive_Detail record);
+
+ /**
+ * 根据条件插入分段信息
+ * @param record
+ * @return
+ */
+ int insertSel(Archive_Detail record);
+
+ /**
+ * 根据id查找分段信息
+ * @param id
+ * @return
+ */
+ Archive_Detail selectByid(String id);
+
+ /**
+ * 根据病案号+类别删除记录
+ * @param record
+ * @return
+ */
+ int deleteByClo(Archive_Detail record);
+
+ /**
+ * 根据条件查询记录
+ * @param record
+ * @return
+ */
+ List selectByColm(Archive_Detail record);
+
+ List selectByCol(Archive_Detail record);
+
+ /**
+ * 根据多个id合成字符串条件查询记录
+ *
+ * @return
+ */
+ List selectByIdStr(Archive_Detail record);
+
+ void getPdfToPdf(HttpServletResponse response,String imgStr,String masterId,String pdfWater);
+
+ List selectTypeTreeByPatientIdAndAssortIds(String patientId,String assortIds);
+
+ void selectPdfPathByIds(HttpServletResponse response, String detailIds, String masterId,String pdfWater);
+}
+
+
diff --git a/src/main/java/com/emr/service/Archive_MasterService.java b/src/main/java/com/emr/service/Archive_MasterService.java
new file mode 100644
index 0000000..e3df236
--- /dev/null
+++ b/src/main/java/com/emr/service/Archive_MasterService.java
@@ -0,0 +1,127 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 15:27
+ * Description:患者住院信息主索引表
+ */
+package com.emr.service;
+
+import com.emr.entity.Archive_Master;
+import com.emr.entity.Archive_Master_Vo;
+import com.emr.entity.Emr_Fault_Detail_Vo;
+import com.emr.entity.OffsetLimitPage;
+import com.emr.util.Msg;
+
+import java.util.List;
+import java.util.Map;
+
+public interface Archive_MasterService {
+ /**
+ * 根据条件查找病案在院列表分页
+ * @param archiveMasterVo
+ * @return
+ */
+ OffsetLimitPage selectByCol(Archive_Master_Vo archiveMasterVo, Integer offset, Integer limit);
+
+ /**
+ * 根据条件查找在院病案列表
+ * @param archiveMasterVo
+ * @return
+ */
+ List selectByCol(Archive_Master_Vo archiveMasterVo);
+
+ /**
+ * 根据条件查找病案终审列表分页
+ *
+ * @param archiveMasterVo
+ * @return
+ */
+ List selectByLast(Archive_Master_Vo archiveMasterVo);
+
+ /**
+ * 根据条件查找'归档中','复审退回'病案列表
+ *
+ * @param archiveMasterVo
+ * @return
+ */
+ List selectByColumn(Archive_Master_Vo archiveMasterVo);
+
+
+ /**
+ * 根据条件查找病案未归档列表分页
+ *
+ * @param archiveMasterVo
+ * @return
+ */
+ List selectByUnfile(Archive_Master_Vo archiveMasterVo);
+ /**
+ * 根据条件查找病案'归档中','审核退回'列表分页
+ *
+ * @param archiveMasterVo
+ * @return
+ */
+ OffsetLimitPage selectByColumn(Archive_Master_Vo archiveMasterVo, Integer offset, Integer limit);
+
+
+ /**
+ * 根据条件查找未归档列表分页
+ *
+ * @param archiveMasterVo
+ * @return
+ */
+ OffsetLimitPage selectByUnfile(Archive_Master_Vo archiveMasterVo, Integer offset, Integer limit);
+
+ /**
+ * 根据条件查找病案终审列表分页
+ *
+ * @param archiveMasterVo
+ * @return
+ */
+ OffsetLimitPage selectByLast(Archive_Master_Vo archiveMasterVo, Integer offset, Integer limit);
+
+
+
+ /**
+ * 根据条件查询记录
+ * @param record
+ * @return
+ */
+ int updateByClo(Archive_Master record);
+
+ /**
+ * 根据id修改记录
+ * @param record
+ * @return
+ */
+ int updateById(Archive_Master record);
+ /**
+ * 根据id查询记录
+ * @param
+ * @return
+ */
+ Archive_Master selectByPrimaryKey(String id);
+
+ int updateReturn(Emr_Fault_Detail_Vo emrFaultDetail) throws Exception;
+
+ List selectByObject(Archive_Master master);
+
+ /**
+ * 初审
+ * */
+ Msg updateStateByArchivId(Archive_Master_Vo master) throws Exception;
+
+ /**
+ * 查询已归档记录
+ * */
+ OffsetLimitPage selectFiled(Archive_Master_Vo master,Integer offset, Integer limit);
+ /**
+ * 已归档操作
+ * */
+ void updateFiled(Archive_Master_Vo master) throws Exception;
+
+ Msg getRole();
+
+ List selectLastVerifyList(Archive_Master_Vo archiveMasterVo);
+}
+
+
diff --git a/src/main/java/com/emr/service/Emr_Archive_DetailService.java b/src/main/java/com/emr/service/Emr_Archive_DetailService.java
new file mode 100644
index 0000000..98dd4ee
--- /dev/null
+++ b/src/main/java/com/emr/service/Emr_Archive_DetailService.java
@@ -0,0 +1,13 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 15:27
+ * Description:病历文件归类表
+ */
+package com.emr.service;
+
+public interface Emr_Archive_DetailService {
+
+}
+
+
diff --git a/src/main/java/com/emr/service/Emr_DictionaryService.java b/src/main/java/com/emr/service/Emr_DictionaryService.java
new file mode 100644
index 0000000..9f5e0c1
--- /dev/null
+++ b/src/main/java/com/emr/service/Emr_DictionaryService.java
@@ -0,0 +1,47 @@
+package com.emr.service;
+
+import com.emr.entity.Emr_Dictionary;
+
+import java.util.List;
+
+public interface Emr_DictionaryService {
+ /**
+ * 根据类型代码查找字典列表
+ *
+ * @param emrDictionary
+ * @return
+ */
+ List dicByTypeCode(Emr_Dictionary emrDictionary);
+
+ /**
+ * 根据字段查找字典列表
+ *
+ * @param emrDictionary
+ * @return
+ */
+ List dicByClo(Emr_Dictionary emrDictionary);
+
+ /**
+ * 根据字段查找记录
+ *
+ * @param emrDictionary
+ * @return
+ */
+ int insertSel(Emr_Dictionary emrDictionary);
+
+ /**
+ * 根据id删除记录
+ *
+ * @param id
+ * @return
+ */
+ int delById(Integer id);
+
+ /**
+ * 根据id修改记录
+ *
+ * @param emrDictionary
+ * @return
+ */
+ int updateCloById(Emr_Dictionary emrDictionary);
+}
diff --git a/src/main/java/com/emr/service/Emr_Fault_DetailService.java b/src/main/java/com/emr/service/Emr_Fault_DetailService.java
new file mode 100644
index 0000000..e36247d
--- /dev/null
+++ b/src/main/java/com/emr/service/Emr_Fault_DetailService.java
@@ -0,0 +1,54 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 15:27
+ * Description:缺陷或不通过审批表
+ */
+package com.emr.service;
+
+import com.emr.entity.Emr_Fault_Detail;
+import com.emr.entity.Emr_Fault_Vo;
+import com.emr.entity.OffsetLimitPage;
+
+import java.util.List;
+
+public interface Emr_Fault_DetailService {
+ /**
+ * 根据查询条件分页查询
+ * @param emrFaultVo
+ * @param offset
+ * @param limit
+ * @return
+ */
+ OffsetLimitPage selectByCol(Emr_Fault_Vo emrFaultVo, Integer offset, Integer limit);
+
+ /**
+ * 根据查询条件导出
+ * @param emrFaultVo
+ * @return
+ */
+ List selectByCol(Emr_Fault_Vo emrFaultVo);
+
+ /**
+ * 根据id修改相应的字段
+ * @param emrFaultDetail
+ * @return
+ */
+ int updateCloByPrimaryKey(Emr_Fault_Detail emrFaultDetail);
+
+ /**
+ * 根据病案号查询缺陷退回审核内容
+ * @param record
+ * @return
+ */
+ Emr_Fault_Detail selectByArchiveDetailId(Emr_Fault_Detail record);
+
+ /**
+ * 插入缺陷退回审核内容
+ * @param record
+ * @return
+ */
+ int insertSel(Emr_Fault_Detail record);
+}
+
+
diff --git a/src/main/java/com/emr/service/Emr_Fault_TypeService.java b/src/main/java/com/emr/service/Emr_Fault_TypeService.java
new file mode 100644
index 0000000..99077ad
--- /dev/null
+++ b/src/main/java/com/emr/service/Emr_Fault_TypeService.java
@@ -0,0 +1,53 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 15:35
+ * Description:缺陷类别表
+ */
+package com.emr.service;
+
+import com.emr.entity.Emr_Fault_Type;
+
+import java.util.List;
+
+public interface Emr_Fault_TypeService {
+ /**
+ * 根据条件查询所有缺陷类别列表
+ * @param record
+ * @return
+ */
+ List selectByCol(Emr_Fault_Type record);
+
+ /**
+ * 根据条件修改缺陷类别信息
+ *
+ * @param record
+ * @return
+ */
+ int updateByClo(Emr_Fault_Type record);
+
+ /**
+ * 根据字段插入缺陷类别信息
+ * @param record
+ * @return
+ */
+ int insertClo(Emr_Fault_Type record);
+
+ /**
+ * 根据id删除缺陷类别记录
+ * @param id
+ * @return
+ */
+ int delById(Integer id);
+
+ /**
+ * 根据id修改缺陷类别信息
+ *
+ * @param id
+ * @return
+ */
+ Emr_Fault_Type selectById(Integer id);
+
+}
+
+
diff --git a/src/main/java/com/emr/service/Emr_PictureService.java b/src/main/java/com/emr/service/Emr_PictureService.java
new file mode 100644
index 0000000..ae49bd8
--- /dev/null
+++ b/src/main/java/com/emr/service/Emr_PictureService.java
@@ -0,0 +1,51 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 15:28
+ * Description:图片信息表
+ */
+package com.emr.service;
+
+import com.emr.entity.Emr_Picture;
+
+import java.util.List;
+
+public interface Emr_PictureService {
+ /**
+ * 根据id查询图片详细查询
+ * @param id
+ * @return
+ */
+ Emr_Picture selectByid(String id);
+
+ /**
+ * 根据条件插入记录
+ * @param record
+ * @return
+ */
+ int insertSel(Emr_Picture record);
+
+ /**
+ * 根据id或标识修改记录
+ * @param record
+ * @return
+ */
+ int updateCloByIdOrFlay(Emr_Picture record);
+
+ /**
+ * 根据条件查询记录
+ * @param record
+ * @return
+ */
+ List selectByClo(Emr_Picture record);
+
+ /**
+ * 根据id查询记录
+ * @param id
+ * @return
+ */
+ int deleteById(String id);
+
+}
+
+
diff --git a/src/main/java/com/emr/service/V_CountService.java b/src/main/java/com/emr/service/V_CountService.java
new file mode 100644
index 0000000..7565d0a
--- /dev/null
+++ b/src/main/java/com/emr/service/V_CountService.java
@@ -0,0 +1,33 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 15:35
+ * Description:缺陷类别表
+ */
+package com.emr.service;
+
+import com.emr.entity.*;
+import com.emr.vo.V_CountVo;
+
+import java.util.List;
+
+public interface V_CountService {
+ /**
+ * 根据条件查询所有统计列表
+ * @param record
+ * @return
+ */
+ List selectByCol(V_CountVo record);
+
+ /**
+ * 根据条件查找统计列表分页
+ *
+ * @param record
+ * @return
+ */
+ OffsetLimitPage selectPageByClo(V_CountVo record, Integer offset, Integer limit);
+
+
+}
+
+
diff --git a/src/main/java/com/emr/service/WebService.java b/src/main/java/com/emr/service/WebService.java
new file mode 100644
index 0000000..33ebb88
--- /dev/null
+++ b/src/main/java/com/emr/service/WebService.java
@@ -0,0 +1,7 @@
+package com.emr.service;
+
+import org.springframework.stereotype.Component;
+
+@Component
+public class WebService {
+}
diff --git a/src/main/java/com/emr/service/ipml/ArchiveCallbackInfoService.java b/src/main/java/com/emr/service/ipml/ArchiveCallbackInfoService.java
new file mode 100644
index 0000000..b9ad018
--- /dev/null
+++ b/src/main/java/com/emr/service/ipml/ArchiveCallbackInfoService.java
@@ -0,0 +1,152 @@
+package com.emr.service.ipml;
+
+import com.emr.dao.ArchiveCallbackInfoMapper;
+import com.emr.entity.ArchiveCallbackInfo;
+import com.emr.entity.Archive_Master;
+import com.emr.entity.OffsetLimitPage;
+import com.emr.service.Archive_MasterService;
+import com.emr.vo.ArchiveCallbackInfoVo;
+import com.emr.vo.FinalAndFirstStatistics;
+import com.emr.vo.User;
+import com.github.pagehelper.Page;
+import com.github.pagehelper.PageHelper;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.shiro.SecurityUtils;
+import org.apache.shiro.util.CollectionUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
+import org.springframework.web.context.request.RequestContextHolder;
+import org.springframework.web.context.request.ServletRequestAttributes;
+
+import javax.servlet.http.HttpServletRequest;
+import java.net.InetAddress;
+import java.net.UnknownHostException;
+import java.util.Date;
+import java.util.List;
+
+/**
+ * @ProjectName:
+ * @Description:
+ * @Param 传输参数
+ * @Return
+ * @Author: 曾文和
+ * @CreateDate: 2020/5/12 16:12
+ * @UpdateUser: 曾文和
+ * @UpdateDate: 2020/5/12 16:12
+ * @UpdateRemark: 更新说明
+ * @Version: 1.0
+ */
+@Service
+@Transactional
+public class ArchiveCallbackInfoService {
+ @Autowired
+ private ArchiveCallbackInfoMapper callbackInfoMapper;
+ @Autowired
+ private Archive_MasterService archiveMasterService;
+ @Autowired
+ private ArchiveFlowInfoService archiveFlowInfoService;
+ @Autowired
+ private StatisticsService statisticsService;
+ /**
+ * 添加召回记录
+ *
+ * @param callbackInfo
+ * @throws Exception
+ */
+ public void insertCallbackInfoService(ArchiveCallbackInfo callbackInfo) throws Exception {
+ String username = (String) SecurityUtils.getSubject().getSession().getAttribute("userSession");
+ callbackInfo.setCallbackUserName(username);
+ callbackInfo.setCallbackTime(new Date());
+ //获取ip
+ String addressIp = getAddressIp();
+ callbackInfo.setIp(addressIp);
+ callbackInfoMapper.insert(callbackInfo);
+ //将病案置为召回,修改状态码
+ Archive_Master master = new Archive_Master();
+ master.setId(callbackInfo.getMasterId());
+ master.setArchivestate(EnumVerify.DocState.CallBacked.getCode() + "");
+ archiveMasterService.updateByClo(master);
+ //添加进流程
+ String masterId = callbackInfo.getMasterId();
+ String currentCode = EnumVerify.DocState.CallBacked.getCode() + "";
+ String remark = callbackInfo.getCallbackReason();
+ Integer targetCode = EnumVerify.DocState.CallBacked.getCode();
+ archiveFlowInfoService.insertFlowInfo(masterId,currentCode,remark,targetCode,new Date());
+ //TODO 删除病案资料
+ }
+
+ private String getAddressIp(){
+ HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
+ // 获取访问真实IP
+ String ipAddress = request.getHeader("x-forwarded-for");
+ if(ipAddress == null || ipAddress.length() == 0 || "unknown".equalsIgnoreCase(ipAddress)) {
+ ipAddress = request.getHeader("Proxy-Client-IP");
+ }
+ if(ipAddress == null || ipAddress.length() == 0 || "unknown".equalsIgnoreCase(ipAddress)) {
+ ipAddress = request.getHeader("WL-Proxy-Client-IP");
+ }
+ if(ipAddress == null || ipAddress.length() == 0 || "unknown".equalsIgnoreCase(ipAddress)) {
+ ipAddress = request.getRemoteAddr();
+ if(ipAddress.equals("127.0.0.1") || ipAddress.equals("0:0:0:0:0:0:0:1")){
+ //根据网卡取本机配置的IP
+ InetAddress inet=null;
+ try {
+ inet = InetAddress.getLocalHost();
+ } catch (UnknownHostException e) {
+ e.printStackTrace();
+ }
+ ipAddress= inet.getHostAddress();
+ }
+ }
+ //对于通过多个代理的情况,第一个IP为客户端真实IP,多个IP按照','分割
+ if(ipAddress!=null && ipAddress.length()>15){ //"***.***.***.***".length() = 15
+ if(ipAddress.indexOf(",")>0){
+ ipAddress = ipAddress.substring(0,ipAddress.indexOf(","));
+ }
+ }
+ return ipAddress;
+ }
+ /**
+ * 查询列表
+ *
+ * @param callbackInfoVo
+ * @param offset
+ * @param limit
+ * @return
+ */
+ public OffsetLimitPage selectAll(ArchiveCallbackInfoVo callbackInfoVo, Integer offset, Integer limit) {
+ PageHelper.offsetPage(offset, limit);
+ List list = selectCallBackInfo(callbackInfoVo);
+ return new OffsetLimitPage((Page) list);
+ }
+
+ public List selectCallBackInfo(ArchiveCallbackInfoVo callbackInfoVo){
+ List list = callbackInfoMapper.selectAll(callbackInfoVo);
+ if (!CollectionUtils.isEmpty(list)) {
+ //转换状态
+ //计算属于哪种审核角色
+ List userList = statisticsService.getUserList();
+ for (int i = 0; i < list.size(); i++) {
+ String archivestate = list.get(i).getArchivestate();
+ if (StringUtils.isNotBlank(archivestate)) {
+ //转换中文状态
+ Integer status = Integer.valueOf(archivestate);
+ archivestate = EnumVerify.DocState.GetStepName(status, EnumVerify.Checker.Generate.getCode());
+ list.get(i).setArchivestate(archivestate);
+ }
+ if(!CollectionUtils.isEmpty(userList)) {
+ //转换姓名
+ String userName = list.get(i).getCallbackUserName();
+ for (User user : userList) {
+ if (StringUtils.isNotBlank(userName) && userName.equals(user.getUserName())) {
+ list.get(i).setCallbackUserName(user.getName());
+ break;
+ }
+ }
+ }
+ }
+ }
+ return list;
+ }
+}
diff --git a/src/main/java/com/emr/service/ipml/ArchiveFlowInfoService.java b/src/main/java/com/emr/service/ipml/ArchiveFlowInfoService.java
new file mode 100644
index 0000000..2c97846
--- /dev/null
+++ b/src/main/java/com/emr/service/ipml/ArchiveFlowInfoService.java
@@ -0,0 +1,289 @@
+package com.emr.service.ipml;
+
+import com.emr.dao.ArchiveFlowInfoMapper;
+import com.emr.dao.ArchiveFlowRoleMapper;
+import com.emr.dao.Archive_MasterMapper;
+import com.emr.dao.EmrHolidaySetMapper;
+import com.emr.entity.*;
+import com.emr.service.Emr_Fault_DetailService;
+import com.emr.service.Emr_Fault_TypeService;
+import com.emr.vo.ArchiveFlowInfoVo;
+import com.emr.vo.User;
+import com.github.pagehelper.PageHelper;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.shiro.SecurityUtils;
+import org.apache.shiro.util.CollectionUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
+
+import java.text.SimpleDateFormat;
+import java.util.Date;
+import java.util.List;
+
+/**
+ * @ProjectName:
+ * @Description:
+ * @Param 传输参数
+ * @Return
+ * @Author: 曾文和
+ * @CreateDate: 2020/5/12 8:49
+ * @UpdateUser: 曾文和
+ * @UpdateDate: 2020/5/12 8:49
+ * @UpdateRemark: 更新说明
+ * @Version: 1.0
+ */
+@Service
+@Transactional
+public class ArchiveFlowInfoService {
+ @Autowired
+ private ArchiveFlowInfoMapper flowInfoMapper;
+ @Autowired
+ private ArchiveFlowRoleMapper flowRoleMapper;
+ @Autowired
+ private Archive_MasterMapper archiveMasterMapper;
+ @Autowired
+ private StatisticsService statisticsService;
+ @Autowired
+ private Emr_Fault_TypeService faultTypeService;
+ @Autowired
+ private EmrHolidaySetMapper holidaySetMapper;
+ /**
+ * 添加进流转记录
+ * @param masterId
+ * @param currentStatus 当前节点code
+ * @param remark 审核内容
+ * @param appointNextCode 手动指定下个节点code,未指定查询流转下个节点,有指定使用指定
+ * @param sumbitDate 提交时间
+ * @throws Exception
+ */
+ public Integer insertFlowInfo(String masterId,String currentStatus,String remark,Integer appointNextCode,Date sumbitDate)throws Exception{
+ if(StringUtils.isNotBlank(currentStatus)) {
+ //添加退回流程
+ ArchiveFlowInfo flowInfo = new ArchiveFlowInfo();
+ //masterId;
+ flowInfo.setMasterId(masterId);
+ //查询审核角色集合,根据有效进行计算状态code
+ List archiveFlowRoles = flowRoleMapper.selectAll();
+ //stepIndex:当前步骤
+ ArchiveFlowRole currentRole = new ArchiveFlowRole();
+ for (ArchiveFlowRole archiveFlowRole : archiveFlowRoles) {
+ if (archiveFlowRole.getCode().equals(currentStatus)) {
+ currentRole = archiveFlowRole;
+ break;
+ }
+ }
+ //当前stepIndex
+ flowInfo.setStepIndex(currentRole.getStepIndex());
+ //当前节点id
+ flowInfo.setStartStepId(currentRole.getId());
+ //startStep:当前步骤name
+ flowInfo.setStartStep(currentRole.getName());
+ //定义操作角色operRole
+ Short operRole = currentRole.getRole();
+ //sumbitName
+ flowInfo.setSumbitName(currentRole.getSumbitName());
+ //targetStep:下一步骤name
+ ArchiveFlowRole nextRole = new ArchiveFlowRole();
+ for (ArchiveFlowRole archiveFlowRole : archiveFlowRoles) {
+ //判断相同审核角色,比当前步骤还大且有效的角色
+ if (null != archiveFlowRole.getRole() && archiveFlowRole.getEffective() == 1) {
+ if(null == appointNextCode){
+ if(null != currentRole.getRole() && null != archiveFlowRole.getStepIndex()){
+ if (currentRole.getRole().equals(archiveFlowRole.getRole()) && archiveFlowRole.getStepIndex() > currentRole.getStepIndex()) {
+ nextRole = archiveFlowRole;
+ break;
+ }
+ }
+ }else{
+ //指定的下个节点code用于退回
+ if (archiveFlowRole.getCode().equals(appointNextCode+"")) {
+ //医生退回下个节点为医生
+ if(appointNextCode.equals(EnumVerify.DocState.DortorBack.getCode())){
+ //sumbitName
+ flowInfo.setSumbitName(EnumVerify.DocState.DortorBack.getName());
+ nextRole.setName(EnumVerify.DocState.DortorSubmit.getName());
+ nextRole.setId(archiveFlowRole.getId());
+ operRole = 1;
+ break;
+ //护士退回下个节点为护士
+ }else if(appointNextCode.equals(EnumVerify.DocState.NurseBack.getCode())){
+ flowInfo.setSumbitName(EnumVerify.DocState.NurseBack.getName());
+ nextRole.setName(EnumVerify.DocState.NurseSubmit.getName());
+ nextRole.setId(archiveFlowRole.getId());
+ operRole = 2;
+ break;
+ //下个节点是病案室审核,属于召回
+ }else if(appointNextCode.equals(EnumVerify.DocState.CallBacked.getCode())){
+ flowInfo.setSumbitName(archiveFlowRole.getSumbitName());
+ nextRole.setName(EnumVerify.DocState.MedicalRoomCheck.getName());
+ //查询病案室终审id
+ for (ArchiveFlowRole archiveFlowRole1 : archiveFlowRoles) {
+ if (archiveFlowRole1.getCode().equals(EnumVerify.DocState.MedicalRoomCheck.getCode()+"")) {
+ nextRole.setId(archiveFlowRole1.getId());
+ break;
+ }
+ }
+ //病案室审核
+ }else if(appointNextCode.equals(EnumVerify.DocState.MedicalRoomCheck.getCode())){
+ nextRole.setName("已归档");
+ nextRole.setId(archiveFlowRole.getId());
+ }
+ }
+ }
+ }
+ }
+ //下个节点为空,填写护士长
+ if(StringUtils.isBlank(nextRole.getName())){
+ for (ArchiveFlowRole archiveFlowRole : archiveFlowRoles) {
+ if(archiveFlowRole.getCode().equals(EnumVerify.DocState.HeadNurseCheck.getCode()+"")){
+ nextRole = archiveFlowRole;
+ break;
+ }
+ }
+ }
+ flowInfo.setTargetStep(nextRole.getName());
+ //下个节点的id
+ flowInfo.setTargetStepId(nextRole.getId());
+ //useSeconds:距离上次提交用时s数
+ Date preDate = new Date();
+ //查询上次节点的时间
+ //查询上次节点的时间方法参数当前节点的名称,当下个节点为病案室终审不带当前审核名称查询该病案最后审核时间
+ String currentName = "";
+ if(!nextRole.getName().equals(EnumVerify.DocState.MedicalRoomCheck.getName())){
+ currentName = currentRole.getName();
+ }
+ List archiveFlowInfos = flowInfoMapper.selectPreInfo(masterId,currentName);
+ if (null != archiveFlowInfos && !archiveFlowInfos.isEmpty()) {
+ //存在取最后一次提交时间
+ preDate = archiveFlowInfos.get(0).getCreatetime();
+ } else {
+ //取出院时间
+ Archive_Master archiveMaster1 = archiveMasterMapper.selectByPrimaryKey(masterId);
+ SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+ String dischargeDateTime = archiveMaster1.getDischargeDateTime();
+ if (StringUtils.isNotBlank(dischargeDateTime)) {
+ preDate = fmt.parse(dischargeDateTime);
+ }
+ }
+ if (null != preDate) {
+ long millis = System.currentTimeMillis() - preDate.getTime();
+ //查询是否这个时间段是否有假日
+ int holidayDays = holidaySetMapper.selectHolidayByDate(preDate);
+ if(holidayDays != 0){
+ int holidayMilTime = holidayDays * 24 * 3600 * 1000;
+ millis -= holidayMilTime;
+ }
+ flowInfo.setUseSeconds(millis / 1000);
+ }
+ flowInfo.setOperRole(operRole);
+ //remark:提交内容
+ flowInfo.setRemark(remark);
+ //userName:提交人用户名
+ // 从session获取用户名
+ String username = (String) SecurityUtils.getSubject().getSession().getAttribute("userSession");
+ flowInfo.setUserName(username);
+ //submit:提交时间
+ flowInfo.setSumbitTime(sumbitDate);
+ //createtime:创建时间
+ flowInfo.setCreatetime(new Date());
+ flowInfoMapper.insertSelective(flowInfo);
+ return flowInfo.getId();
+ }
+ return null;
+ }
+
+ /**
+ * 根据masterId查看流转流程信息
+ * @param id
+ * @return
+ */
+ public List selectFlowInfoByMasterId(String id) {
+ List list = flowInfoMapper.selectFlowInfoByMasterId(id);
+ if(!CollectionUtils.isEmpty(list)) {
+ //获取缺陷类别列表
+ Emr_Fault_Type obj = new Emr_Fault_Type();
+ obj.setEffective(1);
+ List typeList = faultTypeService.selectByCol(obj);
+ List userList = statisticsService.getUserList();
+ //替换姓名
+ if (!CollectionUtils.isEmpty(userList)) {
+ for (int i = 0;i selectFlowInfoList(ArchiveFlowInfoVo flowInfoVo,String sql) {
+ //模糊搜索审核姓名转换工号
+ String checkName = flowInfoVo.getUserName();
+ if(StringUtils.isNoneBlank(checkName)){
+ //转换姓名
+ List userList = statisticsService.getUserList();
+ String checkNames = "";
+ for(User user:userList){
+ if(StringUtils.isNoneBlank(user.getName()) && user.getName().contains(checkName)){
+ checkNames += "'" + user.getUserName() + "',";
+ }
+ }
+ if(StringUtils.isNotBlank(checkNames)){
+ checkNames = checkNames.substring(0,checkNames.length()-1);
+ flowInfoVo.setUserName(checkNames);
+ }else{
+ flowInfoVo.setUserName("'" + checkName + "'");
+ }
+ }
+ List list = flowInfoMapper.selectFlowInfoList(flowInfoVo,sql);
+ //替换姓名
+ if(!CollectionUtils.isEmpty(list)) {
+ List userList = statisticsService.getUserList();
+ if (!CollectionUtils.isEmpty(userList)) {
+ for (int i = 0; i < list.size(); i++) {
+ ArchiveFlowInfoVo infoVo = list.get(i);
+ //转换姓名
+ String userName = infoVo.getUserName();
+ for (User user : userList) {
+ if (StringUtils.isNotBlank(userName) && userName.equals(user.getUserName())) {
+ infoVo.setCheckName(user.getName());
+ break;
+ }
+ }
+ }
+ }
+ }
+ return list;
+ }
+}
diff --git a/src/main/java/com/emr/service/ipml/Archive_DetailServiceImpl.java b/src/main/java/com/emr/service/ipml/Archive_DetailServiceImpl.java
new file mode 100644
index 0000000..168ecb1
--- /dev/null
+++ b/src/main/java/com/emr/service/ipml/Archive_DetailServiceImpl.java
@@ -0,0 +1,132 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 15:37
+ * Description:病历文件信息管理
+ */
+package com.emr.service.ipml;
+
+import com.emr.dao.Archive_DetailMapper;
+import com.emr.entity.Archive_Detail;
+import com.emr.entity.Archive_Detail_Vo;
+import com.emr.entity.OffsetLimitPage;
+import com.emr.service.Archive_DetailService;
+import com.emr.util.Jpg2PdfUtil;
+import com.github.pagehelper.Page;
+import com.github.pagehelper.PageHelper;
+import org.apache.commons.lang3.StringUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import javax.servlet.http.HttpServletResponse;
+import java.util.ArrayList;
+import java.util.List;
+
+@Service
+public class Archive_DetailServiceImpl implements Archive_DetailService {
+ @Autowired
+ private Archive_DetailMapper archiveDetailMapper;
+
+
+ @Override
+ public List selectByClo(Archive_Detail_Vo record) {
+ return archiveDetailMapper.selectByClo(record);
+ }
+
+ @Override
+ public OffsetLimitPage detailByClo(Archive_Detail_Vo record, Integer offset, Integer limit) {
+ PageHelper.offsetPage(offset, limit);
+ List list = archiveDetailMapper.detailByClo(record);
+ return new OffsetLimitPage((Page) list);
+ }
+
+ @Override
+ public int updateCloById(Archive_Detail record) {
+ return archiveDetailMapper.updateCloById(record);
+ }
+
+ @Override
+ public int insertSel(Archive_Detail record) {
+ return archiveDetailMapper.insertSel(record);
+ }
+
+ @Override
+ public Archive_Detail selectByid(String id) {
+ return archiveDetailMapper.selectByid(id);
+ }
+
+ @Override
+ public int deleteByClo(Archive_Detail record) {
+ return archiveDetailMapper.deleteByClo(record);
+ }
+
+ @Override
+ public List selectByColm(Archive_Detail record) {
+ return archiveDetailMapper.selectByColm(record);
+ }
+
+ @Override
+ public List selectByCol(Archive_Detail record) {
+ return archiveDetailMapper.selectByCol(record);
+ }
+
+ @Override
+ public List selectByIdStr(Archive_Detail record) {
+ return archiveDetailMapper.selectByIdStr(record);
+ }
+
+ @Override
+ public void getPdfToPdf(HttpServletResponse response, String imgStr, String masterId,String pdfWater) {
+ if (masterId != "" && masterId != null) {
+ //获取废除的pdf文件名列表archive_detail
+ List pdfList = new ArrayList();
+ Archive_Detail archiveDetail = new Archive_Detail();
+ archiveDetail.setFlag("0");
+ archiveDetail.setMasterid(masterId.trim());
+ archiveDetail.setTitle(imgStr);
+ try {
+ List arList = selectByCol(archiveDetail);
+ if (arList != null && !arList.isEmpty()) {
+ for (int m = 0; m < arList.size(); m++) {
+ String str = arList.get(m).getPdfPath();
+ if (StringUtils.isNoneBlank(str)) {
+ pdfList.add(str);
+ }
+ }
+ }
+ Jpg2PdfUtil.mulFile2One(response, pdfList, pdfWater);
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
+ }
+
+ @Override
+ public void selectPdfPathByIds(HttpServletResponse response, String detailIds, String masterId,String pdfWater) {
+ if (masterId != "" && masterId != null) {
+ //获取废除的pdf文件名列表archive_detail
+ List pdfList = new ArrayList();
+ try {
+ List arList = archiveDetailMapper.selectPdfPathByIds(masterId,detailIds);
+ if (arList != null && !arList.isEmpty()) {
+ for (int m = 0; m < arList.size(); m++) {
+ String str = arList.get(m).getPdfPath();
+ if (StringUtils.isNoneBlank(str)) {
+ pdfList.add(str);
+ }
+ }
+ }
+ Jpg2PdfUtil.mulFile2One(response, pdfList, pdfWater);
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
+ }
+
+ @Override
+ public List selectTypeTreeByPatientIdAndAssortIds(String patientId, String assortIds) {
+ return archiveDetailMapper.selectTypeTreeByPatientIdAndAssortIds(patientId, assortIds);
+ }
+}
+
+
diff --git a/src/main/java/com/emr/service/ipml/Archive_MasterServiceImpl.java b/src/main/java/com/emr/service/ipml/Archive_MasterServiceImpl.java
new file mode 100644
index 0000000..3b0f321
--- /dev/null
+++ b/src/main/java/com/emr/service/ipml/Archive_MasterServiceImpl.java
@@ -0,0 +1,775 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 15:39
+ * Description:患者住院信息主索引管理
+ */
+package com.emr.service.ipml;
+
+import com.emr.dao.ArchiveFlowRoleMapper;
+import com.emr.dao.Archive_MasterMapper;
+import com.emr.entity.*;
+import com.emr.service.Archive_MasterService;
+import com.emr.service.Emr_Fault_DetailService;
+import com.emr.util.Msg;
+import com.github.pagehelper.Page;
+import com.github.pagehelper.PageHelper;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.log4j.Logger;
+import org.apache.shiro.SecurityUtils;
+
+import javax.servlet.http.HttpServletRequest;
+
+import org.springframework.beans.BeanUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
+import org.springframework.web.context.request.RequestContextHolder;
+import org.springframework.web.context.request.ServletRequestAttributes;
+
+import java.text.SimpleDateFormat;
+import java.util.*;
+
+/**
+ * @author zwh
+ * */
+@Service
+@Transactional
+public class Archive_MasterServiceImpl implements Archive_MasterService {
+ private static Logger log = Logger.getLogger("myLog");
+ @Autowired
+ private Archive_MasterMapper archiveMasterMapper;
+ @Autowired
+ private Emr_Fault_DetailService emrFaultDetailService;
+ @Autowired
+ private ArchiveFlowRoleMapper flowRoleMapper;
+ @Autowired
+ private ArchiveFlowInfoService flowInfoService;
+ /**
+ * 在院列表
+ * */
+ @Override
+ public OffsetLimitPage selectByCol(Archive_Master_Vo archiveMasterVo, Integer offset, Integer limit) {
+ PageHelper.offsetPage(offset, limit);
+ List list= archiveMasterMapper.selectByCol(archiveMasterVo);
+ return new OffsetLimitPage((Page) list);
+ }
+
+ /**
+ * 出院列表
+ * */
+ @Override
+ public OffsetLimitPage selectByColumn(Archive_Master_Vo archiveMasterVo, Integer offset, Integer limit) {
+ PageHelper.offsetPage(offset, limit);
+ List list = selectByColumn(archiveMasterVo);
+ return new OffsetLimitPage((Page) list);
+ }
+
+ /**
+ * 未归档列表
+ * */
+ @Override
+ public OffsetLimitPage selectByUnfile(Archive_Master_Vo archiveMasterVo, Integer offset, Integer limit) {
+ PageHelper.offsetPage(offset, limit);
+ List list = selectByUnfile(archiveMasterVo);
+ return new OffsetLimitPage((Page) list);
+ }
+
+ /**
+ * 终审列表
+ * */
+ @Override
+ public OffsetLimitPage selectByLast(Archive_Master_Vo archiveMasterVo, Integer offset, Integer limit) {
+ PageHelper.offsetPage(offset, limit);
+ List list = selectLastVerifyList(archiveMasterVo);
+ return new OffsetLimitPage((Page) list);
+ }
+
+ /**
+ * 查询终审页面列表
+ * */
+ @Override
+ public List selectLastVerifyList(Archive_Master_Vo archiveMasterVo){
+ List list = archiveMasterMapper.selectByLast(archiveMasterVo);
+ if(null != list && !list.isEmpty()){
+ for (Archive_Master_Vo masterVo : list) {
+ //状态均为护士长已质控,取出一个对象,转换中文状态
+ Integer status = Integer.valueOf(masterVo.getArchivestate());
+ if(status.equals(EnumVerify.DocState.HeadNurseCheck.getCode())){
+ masterVo.setStatus(EnumVerify.DocState.HeadNurseCheck.getName());
+ }else if(status.equals(EnumVerify.DocState.CallBacked.getCode())){
+ masterVo.setStatus(EnumVerify.DocState.CallBacked.getName());
+ }
+ }
+ }
+ return list;
+ }
+
+ /**
+ * 已归档
+ * 病案终审退回页面
+ * */
+ @Override
+ public OffsetLimitPage selectFiled(Archive_Master_Vo master,Integer offset, Integer limit) {
+ PageHelper.offsetPage(offset, limit);
+ List list= archiveMasterMapper.selectFiled(master);
+ return new OffsetLimitPage((Page) list);
+ }
+
+ @Override
+ public List selectByCol(Archive_Master_Vo archiveMasterVo) {
+ return archiveMasterMapper.selectByCol(archiveMasterVo);
+ }
+
+ @Override
+ public List selectByColumn(Archive_Master_Vo archiveMasterVo) {
+ setMaxRoleId(archiveMasterVo);
+ List list = archiveMasterMapper.selectByColumn(archiveMasterVo);
+ //根据状态code转换状态及判断显示按钮
+ if(null != list && !list.isEmpty()){
+ //查询流转角色集合
+ List flowRoles = flowRoleMapper.selectAll();
+ //计算属于哪种审核角色
+ Msg role = getRole();
+ if(null != role) {
+ for (int i = 0; i < list.size(); i++) {
+ String archivestate = list.get(i).getArchivestate();
+ if (StringUtils.isNotBlank(archivestate)) {
+ //转换中文状态
+ boolean numeric = isNumeric(archivestate);
+ if(numeric) {
+ Integer status = Integer.valueOf(archivestate);
+ archivestate = EnumVerify.DocState.GetStepName(status, role.getCode());
+ list.get(i).setStatus(archivestate);
+ //获取审核按钮和退回按钮集合
+ String btns = getBtns(status, flowRoles, list.get(i).getId());
+ list.get(i).setBtns(btns);
+ }
+ }
+ }
+ }
+ }
+ return list;
+ }
+
+ //验证字符串是否是数字
+ public static boolean isNumeric(String str){
+ for (int i = 0; i < str.length(); i++){
+ if (!Character.isDigit(str.charAt(i))){
+ return false;
+ }
+ }
+ return true;
+ }
+ /**
+ * 处理已审批查询时的节点id,且是多个的
+ * @param archiveMasterVo
+ * @return
+ */
+ private void setMaxRoleId(Archive_Master_Vo archiveMasterVo){
+ String status = archiveMasterVo.getStatus();
+ //取最大值
+ String archivestate = archiveMasterVo.getArchivestate();
+ if(StringUtils.isNotBlank(status) && StringUtils.isNotBlank(archivestate)){
+ //查询已审批才处理
+ if("1".equals(archivestate) && status.contains(",")) {
+ Integer maxStatus = 0;
+ String[] statusArr = status.split(",");
+ for (String statu : statusArr) {
+ if (StringUtils.isNotBlank(statu)) {
+ Integer integer = Integer.valueOf(statu);
+ if (maxStatus < integer) {
+ //重新赋值
+ maxStatus = integer;
+ }
+ }
+ }
+ //设置角色index
+ archiveMasterVo.setStatus(maxStatus+"");
+ }
+ }
+ }
+
+ @Override
+ public List selectByUnfile(Archive_Master_Vo archiveMasterVo) {
+ List list = archiveMasterMapper.selectByUnfile(archiveMasterVo);
+ //根据状态code转换状态及判断显示按钮
+ if(null != list && !list.isEmpty()){
+ //计算属于哪种审核角色
+ Msg role = getRole();
+ if(null != role) {
+ for (int i = 0; i < list.size(); i++) {
+ String archivestate = list.get(i).getArchivestate();
+ String dischargeDateTime = list.get(i).getDischargeDateTime();
+ //年份是1801定义为在院
+ //定义是否是在院病历
+ boolean flag = false;
+ if(StringUtils.isNotBlank(dischargeDateTime) && dischargeDateTime.length() >= 4){
+ String year = dischargeDateTime.substring(0, 4);
+ if("1801".equals(year)){
+ flag = true;
+ list.get(i).setStatus("在院");
+ }
+ }
+ if (StringUtils.isNotBlank(archivestate) && !flag) {
+ //转换中文状态
+ Integer status = Integer.valueOf(archivestate);
+ archivestate = EnumVerify.DocState.GetStepName(status, role.getCode());
+ list.get(i).setStatus(archivestate);
+ }
+ }
+ }
+ }
+ return list;
+ }
+
+ @Override
+ public List selectByLast(Archive_Master_Vo archiveMasterVo) {
+ return archiveMasterMapper.selectByLast(archiveMasterVo);
+ }
+
+ /**
+ * 获取审核按钮和退回按钮集合
+ * */
+ private String getBtns(Integer status,List roles,String id){
+ String btns = "";
+ //获取用户功能权限信息
+ HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
+ Power_User user = (Power_User) request.getSession().getAttribute("CURRENT_USER");
+ Set menus = user.getMenus();
+ if(null != menus && !menus.isEmpty()) {
+ //医生提交权限标识
+ String doctorSumbit = "/beHosp/doctorSumbit";
+ //医生质控员质控权限标识
+ String doctorCheckSumbit = "/beHosp/doctorCheckSumbit";
+ //科主任审核权限标识
+ String directorCheckSumbit = "/beHosp/directorCheckSumbit";
+ //护士提交权限标识
+ String nurseSumbit = "/beHosp/nurseSumbit";
+ //护士质控员质控权限标识
+ String nurseCheckSumbit = "/beHosp/nurseCheckSumbit";
+ //护士长审核权限标识
+ String headNurseCheck = "/beHosp/headNurseCheck";
+ //退回权限标识
+ String backSumbit = "/beHosp/backSumbit";
+ //医生提交权限标识
+ int doctorSumbitPower = 0;
+ //医生质控员质控权限标识
+ int doctorCheckSumbitPower = 0;
+ //科主任审核权限标识
+ int directorCheckSumbitPower = 0;
+ //护士提交权限标识
+ int nurseSumbitPower = 0;
+ //护士质控员质控权限标识
+ int nurseCheckSumbitPower = 0;
+ //护士长审核权限标识
+ int headNurseCheckPower = 0;
+ //退回权限标识
+ int backPower = 0;
+ //遍历,判断拥有权限,拥有护士长权限立即返回4,拥有医生支线赋值doctorRole=1,拥有护士支线赋值nurseRole=1
+ for (String menu : menus) {
+ if (StringUtils.isNotBlank(menu)) {
+ if (menu.equals(doctorSumbit+"")) {
+ doctorSumbitPower = 1;
+ }
+ if (menu.equals(doctorCheckSumbit+"")) {
+ doctorCheckSumbitPower = 1;
+ }
+ if (menu.equals(directorCheckSumbit+"")) {
+ directorCheckSumbitPower = 1;
+ }
+ if (menu.equals(nurseSumbit+"")) {
+ nurseSumbitPower = 1;
+ }
+ if (menu.equals(nurseCheckSumbit+"")) {
+ nurseCheckSumbitPower = 1;
+ }
+ if (menu.equals(headNurseCheck+"")) {
+ headNurseCheckPower = 1;
+ }
+ if (menu.equals(backSumbit+"")) {
+ backPower = 1;
+ }
+ }
+ }
+ //判断按钮
+ //定义按钮
+ String headNurseSumbitName = "护士长审核";
+ String doctorSumbitName = "医生提交";
+ String doctorCheckSumbitName = "医生质控员质控";
+ String directorCheckSumbitName = "科主任审核";
+ String nurseSumbitName = "护士提交";
+ String nurseCheckSumbitName = "护士质控员质控";
+ //定义医生提交是否有效
+ int doctorSubmitEffective = 0;
+ //定义医生质控员是否有效
+ int dortorCheckEffective = 0;
+ //定义科主任审核是否有效
+ int directorCheckEffective = 0;
+ //定义护士提交是否有效
+ int nurseSubmitEffective = 0;
+ //定义护士质控员质控是否有效
+ int nurseCheckEffective = 0;
+ //定义护士长质控是否有效
+ int headNurseCheckEffective = 0;
+ for (ArchiveFlowRole flowRole : roles) {
+ if(flowRole.getCode().equals(EnumVerify.DocState.HeadNurseCheck.getCode()+"")){
+ headNurseSumbitName = flowRole.getSumbitName();
+ headNurseCheckEffective = flowRole.getEffective();
+ }else if(flowRole.getCode().equals(EnumVerify.DocState.DortorSubmit.getCode()+"")){
+ doctorSumbitName = flowRole.getSumbitName();
+ doctorSubmitEffective = flowRole.getEffective();
+ }else if(flowRole.getCode().equals(EnumVerify.DocState.DortorCheck.getCode()+"")){
+ doctorCheckSumbitName = flowRole.getSumbitName();
+ dortorCheckEffective = flowRole.getEffective();
+ }else if(flowRole.getCode().equals(EnumVerify.DocState.DirectorCheck.getCode()+"")){
+ directorCheckSumbitName = flowRole.getSumbitName();
+ directorCheckEffective = flowRole.getEffective();
+ }else if(flowRole.getCode().equals(EnumVerify.DocState.NurseSubmit.getCode()+"")){
+ nurseSumbitName = flowRole.getSumbitName();
+ nurseSubmitEffective = flowRole.getEffective();
+ }else if(flowRole.getCode().equals(EnumVerify.DocState.NurseCheck.getCode()+"")){
+ nurseCheckSumbitName = flowRole.getSumbitName();
+ nurseCheckEffective = flowRole.getEffective();
+ }
+ }
+ //判断组织审核按钮
+ //审核按钮参数1:角色编号1或2或4。2:当前code。3.下个节点code。4:masterId
+ //退回按钮参数1:当前code。2:下个节点code。3:masterId
+ //护士长
+ String masterId = '"' + id + '"';
+ //定义下个节点code
+ Integer targetCode = 0;
+ if(!EnumVerify.DocState.HasCurrentState(status,EnumVerify.DocState.HeadNurseCheck)){
+ //判断是否护士长审核
+ boolean headNurseCheckFlag = getHeadNurseCheckFlag(status,roles);
+ if (headNurseCheckFlag) {
+ if (headNurseCheckPower == 1 && headNurseCheckEffective == 1) {
+ targetCode = EnumVerify.DocState.HeadNurseCheck.getCode();
+ btns += "";
+
+ }
+ } else {
+ //没有医生提交
+ if (!EnumVerify.DocState.HasCurrentState(status, EnumVerify.DocState.DortorSubmit)) {
+ if (doctorSumbitPower == 1 && doctorSubmitEffective == 1) {
+ targetCode = EnumVerify.DocState.DortorSubmit.getCode();
+ btns += "";
+ }
+ }
+ //没有医生质控员提交
+ if (!EnumVerify.DocState.HasCurrentState(status, EnumVerify.DocState.DortorCheck) && EnumVerify.DocState.HasCurrentState(status, EnumVerify.DocState.DortorSubmit) || doctorSubmitEffective == 0) {
+ if (doctorCheckSumbitPower == 1 && dortorCheckEffective == 1) {
+ targetCode = EnumVerify.DocState.DortorCheck.getCode();
+ btns += "";
+ }
+ }
+ //没有科主任审核
+ if (!EnumVerify.DocState.HasCurrentState(status, EnumVerify.DocState.DirectorCheck) && EnumVerify.DocState.HasCurrentState(status, EnumVerify.DocState.DortorCheck) || (dortorCheckEffective == 0 && doctorSubmitEffective == 0) || (dortorCheckEffective == 0 && EnumVerify.DocState.HasCurrentState(status, EnumVerify.DocState.DortorSubmit))) {
+ if (directorCheckSumbitPower == 1 && directorCheckEffective == 1) {
+ targetCode = EnumVerify.DocState.DirectorCheck.getCode();
+ btns += "";
+ }
+ }
+ //没有护士提交
+ if (!EnumVerify.DocState.HasCurrentState(status, EnumVerify.DocState.NurseSubmit)) {
+ if (nurseSumbitPower == 1 && nurseSubmitEffective == 1) {
+ targetCode = EnumVerify.DocState.NurseSubmit.getCode();
+ btns += "";
+ }
+ //没有护士质控员提交
+ }
+ if (!EnumVerify.DocState.HasCurrentState(status, EnumVerify.DocState.NurseCheck) && EnumVerify.DocState.HasCurrentState(status, EnumVerify.DocState.NurseSubmit) || nurseSubmitEffective == 0) {
+ if (nurseCheckSumbitPower == 1 && nurseCheckEffective == 1) {
+ targetCode = EnumVerify.DocState.NurseCheck.getCode();
+ btns += "";
+ }
+ }
+ }
+ //退回按钮
+ if(StringUtils.isNotBlank(btns) && backPower == 1){
+ btns += "";
+ }
+ }
+ }
+ return btns;
+ }
+ /**
+ * 计算是否属于护士长审核
+ * */
+ private boolean getHeadNurseCheckFlag(int status,List roles){
+ boolean flag = true;
+ List effectiveRoles = new ArrayList<>();
+ //遍历查询匹配医生和护士支线最后节点均已提交
+ for (ArchiveFlowRole role : roles) {
+ //获取步骤
+ Integer stepIndex = role.getStepIndex();
+ //获取有效
+ Short effective = role.getEffective();
+ //获取有效且护士长审核前的节点且不包含开始节点
+ if (null != stepIndex && stepIndex < 4 && stepIndex > 0 && effective == 1) {
+ effectiveRoles.add(role);
+ }
+ }
+ if(!effectiveRoles.isEmpty()){
+ for(ArchiveFlowRole role : effectiveRoles){
+ //获取节点code
+ String code = role.getCode();
+ //转换类型
+ Integer integerCode = Integer.valueOf(code);
+ //其中有一个不包含直接返回false
+ if((status & integerCode) == 0){
+ return false;
+ }
+ }
+ }
+ return flag;
+ }
+
+ @Override
+ public int updateByClo(Archive_Master record) {
+ return archiveMasterMapper.updateByClo(record);
+ }
+
+ @Override
+ public int updateById(Archive_Master record) {
+ return archiveMasterMapper.updateById(record);
+ }
+
+ @Override
+ public Archive_Master selectByPrimaryKey(String id) {
+ return archiveMasterMapper.selectByPrimaryKey(id);
+ }
+
+ /**
+ * 退回操作
+ * */
+ @Override
+ public int updateReturn(Emr_Fault_Detail_Vo emrFaultDetail) throws Exception{
+ //修改病案归档状态:复审退回
+ Archive_Master archiveMaster = new Archive_Master();
+ archiveMaster.setId(emrFaultDetail.getArchiveDetailId());
+ // 从session获取用户名
+ String username = (String) SecurityUtils.getSubject().getSession().getAttribute("userSession");//获取前面登录的用户名
+ //设置回退给角色信息
+ String returntoRole = emrFaultDetail.getReturntoRole();
+ archiveMaster.setReturntoRole(returntoRole);
+ log.info(username+"将病案:"+emrFaultDetail.getArchiveDetailId()+"退回给"+returntoRole);
+ if(StringUtils.isNotBlank(emrFaultDetail.getStatus())) {
+ int status = Integer.valueOf(emrFaultDetail.getStatus());
+ //计算状态code
+ //查询审核角色集合,根据有效进行计算状态code
+ List archiveFlowRoles = flowRoleMapper.selectAll();
+ //定义masterId
+ String masterId = emrFaultDetail.getArchiveDetailId();
+ //定义下个节点code
+ String targetCode = "";
+ //为空为病案室退回
+ if(null == emrFaultDetail.getTargetCode()){
+ targetCode = EnumVerify.DocState.MedicalRoomCheck.getCode() + "";
+ }else{
+ targetCode = emrFaultDetail.getTargetCode() + "";
+ }
+ //定义退回内容
+ String remark = emrFaultDetail.getBackContent();
+ Integer backToCode = 0;
+ //流转记录的最新id
+ Integer flowInfoId = 0;
+ //参数输入
+ SimpleDateFormat format1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+ String nowTime = format1.format(new Date());
+ //修改复审内容
+ emrFaultDetail.setCreater(username);
+ emrFaultDetail.setCreateTime(nowTime);
+ switch (returntoRole) {
+ //退回给医生
+ case "DOCTOR":
+ status = EnumVerify.DocState.backToDoctor(Integer.valueOf(emrFaultDetail.getStatus()),archiveFlowRoles);
+ //添加进流转记录
+ backToCode = EnumVerify.DocState.DortorBack.getCode();
+ flowInfoId = flowInfoService.insertFlowInfo(masterId,targetCode,remark,backToCode,new Date());
+ emrFaultDetail.setParentId(flowInfoId);
+ //添加缺陷记录
+ emrFaultDetailService.insertSel(emrFaultDetail);
+ break;
+ //退回给护士
+ case "NURSE":
+ backToCode = EnumVerify.DocState.NurseBack.getCode();
+ status = EnumVerify.DocState.backToNurse(Integer.valueOf(emrFaultDetail.getStatus()),archiveFlowRoles);
+ //添加进流转记录
+ flowInfoId = flowInfoService.insertFlowInfo(masterId,targetCode,remark,backToCode,new Date());
+ emrFaultDetail.setParentId(flowInfoId);
+ //添加缺陷记录
+ emrFaultDetailService.insertSel(emrFaultDetail);
+ break;
+ //退回给医生和护士
+ case "ALL":
+ status = EnumVerify.DocState.backToAll();
+ backToCode = EnumVerify.DocState.DortorBack.getCode();
+ flowInfoId = flowInfoService.insertFlowInfo(masterId,targetCode,remark,backToCode,new Date());
+ emrFaultDetail.setParentId(flowInfoId);
+ //添加缺陷记录
+ emrFaultDetailService.insertSel(emrFaultDetail);
+ backToCode = EnumVerify.DocState.NurseBack.getCode();
+ flowInfoId = flowInfoService.insertFlowInfo(masterId,targetCode,remark,backToCode,new Date());
+ emrFaultDetail.setParentId(flowInfoId);
+ //添加缺陷记录
+ emrFaultDetailService.insertSel(emrFaultDetail);
+ break;
+ }
+ archiveMaster.setArchivestate(status + "");
+ }
+ //设置回退操作人信息
+ archiveMaster.setReturnOperUsername(username);
+ updateByClo(archiveMaster);
+
+ //退回金蝶
+ //获取基本信息
+ /*Archive_Master archiveMaster1 = selectByPrimaryKey(emrFaultDetail.getArchiveDetailId());
+ try {
+ String msg = "" +
+ "" + archiveMaster1.getPatientId() + "" +
+ "" + archiveMaster1.getVisitId() + "" +
+ "" + archiveMaster1.getInpNo() + "" +
+ "" + emrFaultDetail.getReturntoRole() + "" +
+ "01" +
+ "修改病历" +
+ "" + archiveMaster1.getDeptName() + "" +
+ "" + username + "" +
+ "8913" +
+ "" + nowTime + "" +
+ "24" +
+ "";
+ log.info(msg);
+ JAXDynamicClientFactory clientFactory = JAXDynamicClientFactory.newInstance();
+ String url = "http://192.168.10.39:8001/KingdeeEmrArchiveReturn.asmx?wsdl";
+ String param1 = "http://tempuri.org/";
+ String param2 = "SetArchieveReturn";
+ Client client = clientFactory.createClient(url);
+ QName qname = new QName(param1, param2);
+ Object[] result = client.invoke(qname, msg);
+ *//*Document document = DocumentHelper.parseText(result[0].toString());
+ Element rootElement = document.getRootElement();
+ Iterator iterator = rootElement.elementIterator();
+ while (iterator.hasNext()) {
+ Element element = (Element) iterator.next();
+ if ("resultCode".equals(element.getName())) {
+ System.out.println("resultCode:" + element.getTextTrim());
+ }
+ if ("resultDesc".equals(element.getName())) {
+ System.out.println("resultDesc:" + element.getTextTrim());
+ }
+ }*//*
+ log.info("回退成功!");
+ }catch(Exception e){
+ log.info("回退出错了!");
+ log.info(e.getMessage());
+ throw new RuntimeException();
+ }*/
+ return 1;
+ }
+
+ @Override
+ public List selectByObject(Archive_Master master) {
+ return archiveMasterMapper.selectByObject(master);
+ }
+
+ /**
+ * author:zwh
+ * 初审审核操作
+ * */
+ @Override
+ public Msg updateStateByArchivId(Archive_Master_Vo master) throws Exception{
+ //修改病案归档状态
+ //计算审核状态code
+ String archivestate = master.getArchivestate();
+ if (StringUtils.isNotBlank(archivestate)) {
+ Integer code = Integer.valueOf(archivestate);
+ //查询审核角色集合,根据有效进行计算状态code
+ List archiveFlowRoles = flowRoleMapper.selectAll();
+ Integer role = master.getRole();
+ //计算状态code
+ //code:当前状态code,role:角色1医生2护士3护士长,archiveFlowRoles:根据有效的审核角色进行计算
+ int statuCode = EnumVerify.DocState.GetNextStepCode(code,role, archiveFlowRoles);
+ master.setArchivestate(statuCode+"");
+ //复制对象
+ Archive_Master archiveMaster = new Archive_Master();
+ BeanUtils.copyProperties(master,archiveMaster);
+ //更新
+ updateByClo(archiveMaster);
+ //添加进流转记录
+ flowInfoService.insertFlowInfo(master.getId(),master.getStatus()+"",master.getRemark(),null,new Date());
+ return Msg.success();
+ } else {
+ return Msg.fail("初始状态出错了!");
+ }
+ }
+
+ /**
+ * author:zwh
+ * 终审审核操作
+ * */
+ @Override
+ public void updateFiled(Archive_Master_Vo master) throws Exception{
+ // 从session获取用户名
+ String username = (String) SecurityUtils.getSubject().getSession().getAttribute("userSession");//获取前面登录的用户名
+ SimpleDateFormat format1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+ //修改病案归档状态
+ Archive_Master archiveMaster = new Archive_Master();
+ //拷贝对象
+ BeanUtils.copyProperties(master,archiveMaster);
+ //定义提交时间
+ //设置审核时间
+ Date sumbitDate = new Date();
+ if(StringUtils.isBlank(master.getCheckedDatetime())){
+ //未手动修改终审时间,使用当前时间
+ archiveMaster.setCheckedDatetime(format1.format(new Date()));
+ }else{
+ //手动修改终审时间,是否修改的时间
+ archiveMaster.setCheckedDatetime(master.getCheckedDatetime());
+ sumbitDate = format1.parse(master.getCheckedDatetime());
+ }
+ //设置审核人
+ archiveMaster.setCheckedDoctor(username);
+ //设为已归档状态
+ archiveMaster.setArchivestate(EnumVerify.DocState.MedicalRoomCheck.getCode()+"");
+ //更新
+ updateByClo(archiveMaster);
+ //当前节点两种可能病案室审核和已召回
+ //是已召回,将当前节点code置为病案室审核
+ String currentStatus = EnumVerify.DocState.MedicalRoomCheck.getCode() + "";
+ //添加流转节点
+ flowInfoService.insertFlowInfo(master.getId(),currentStatus,master.getRemark(),EnumVerify.DocState.MedicalRoomCheck.getCode(),sumbitDate);
+ /*//masterId;
+ flowInfo.setMasterId(master.getId());
+ //stepIndex:当前步骤
+ ArchiveFlowRole currentRole = new ArchiveFlowRole();
+ //查询审核角色集合,根据有效进行计算状态code
+ List archiveFlowRoles = flowRoleMapper.selectAll();
+ for (ArchiveFlowRole archiveFlowRole:archiveFlowRoles) {
+ if(archiveFlowRole.getCode().equals(EnumVerify.DocState.MedicalRoomCheck.getCode()+"")){
+ currentRole = archiveFlowRole;
+ break;
+ }
+ }
+ flowInfo.setStepIndex(currentRole.getStepIndex());
+ //startStep:当前步骤name
+ flowInfo.setStartStep(currentRole.getName());
+ //sumbitName:按钮名称
+ flowInfo.setSumbitName(currentRole.getSumbitName());
+ //targetStep:下一步骤name
+ flowInfo.setTargetStep("已归档");
+ //useSeconds:距离上次提交用时s数
+ Date preDate = new Date();
+ //查询上次节点的时间
+ List archiveFlowInfos = flowInfoMapper.selectPreInfo(master.getId(), currentRole.getName());
+ if(null != archiveFlowInfos && !archiveFlowInfos.isEmpty()){
+ //存在取最后一次提交时间
+ preDate = archiveFlowInfos.get(0).getCreatetime();
+ }else{
+ //取出院时间
+ Archive_Master archiveMaster1 = archiveMasterMapper.selectByPrimaryKey(master.getId());
+ SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+ String dischargeDateTime = archiveMaster1.getDischargeDateTime();
+ if(StringUtils.isNotBlank(dischargeDateTime)){
+ preDate = fmt.parse(dischargeDateTime);
+ }
+ }
+ if(null != preDate){
+ long millis = sumbitDate.getTime() - preDate.getTime();
+ flowInfo.setUseSeconds(millis/1000);
+ }
+ //remark:提交内容
+ flowInfo.setRemark(master.getRemark());
+ //userName:提交人用户名
+ // 从session获取用户名
+ flowInfo.setUserName(username);
+ //createtime:提交时间
+ flowInfo.setSumbitTime(sumbitDate);
+ //createtime:创建时间
+ flowInfo.setCreatetime(new Date());
+ flowInfoMapper.insert(flowInfo);*/
+ }
+
+ /**
+ * 获取当前角色属于审核哪种角色
+ * 医生支线返回1,护士支线返回2,一般审核者返回3
+ * */
+ @Override
+ public Msg getRole(){
+ Msg msg = new Msg();
+ //获取用户功能权限信息
+ HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
+ Power_User user = (Power_User) request.getSession().getAttribute("CURRENT_USER");
+ Set menus = user.getMenus();
+ if(null != menus && !menus.isEmpty()){
+ //定义医生支线role
+ int doctorRole = 0;
+ //定义护士支线role
+ int nurseRole = 0;
+ //护士长审核权限标识
+ String headNurseCheck = "/beHosp/headNurseCheck";
+ //医生提交权限标识
+ String doctorSumbit = "/beHosp/doctorSumbit";
+ //医生质控员质控权限标识
+ String doctorCheckSumbit = "/beHosp/doctorCheckSumbit";
+ //科主任审核权限标识
+ String directorCheckSumbit = "/beHosp/directorCheckSumbit";
+ //护士提交权限标识
+ String nurseSumbit = "/beHosp/nurseSumbit";
+ //护士质控员质控权限标识
+ String nurseCheckSumbit = "/beHosp/nurseCheckSumbit";
+ int genegrateRole = 0;
+ //拼接有权限的code
+ String powerCode = "";
+ Integer role = 0;
+ //遍历,判断拥有权限,拥有护士长权限立即返回4,拥有医生支线赋值doctorRole=1,拥有护士支线赋值nurseRole=1
+ for (String menu : menus) {
+ if(StringUtils.isNotBlank(menu)){
+ if(menu.equals(doctorSumbit)){
+ doctorRole = 1;
+ powerCode += EnumVerify.DocState.DortorSubmit.getCode() + ",";
+ }
+ if(menu.equals(doctorCheckSumbit)){
+ doctorRole = 1;
+ powerCode += EnumVerify.DocState.DortorCheck.getCode() + ",";
+ }
+ if(menu.equals(directorCheckSumbit)){
+ doctorRole = 1;
+ powerCode += EnumVerify.DocState.DirectorCheck.getCode() + ",";
+ }
+ if(menu.equals(nurseSumbit)){
+ nurseRole = 1;
+ powerCode += EnumVerify.DocState.NurseSubmit.getCode() + ",";
+ }
+ if(menu.equals(nurseCheckSumbit)){
+ nurseRole = 1;
+ powerCode += EnumVerify.DocState.NurseCheck.getCode() + ",";
+ }
+ if(menu.equals(headNurseCheck)){
+ genegrateRole = 1;
+ powerCode += EnumVerify.DocState.HeadNurseCheck.getCode() + ",";
+ }
+ }
+ }
+ if(powerCode.endsWith(",")){
+ powerCode = powerCode.substring(0,powerCode.length()-1);
+ }
+ msg.setMsg(powerCode);
+ //判断属于哪个支线权限
+ if(doctorRole == 1 && nurseRole == 0){
+ msg.setCode(1);
+ }
+ if(doctorRole == 0 && nurseRole == 1){
+ msg.setCode(2);
+ }
+ if(doctorRole == 1 && nurseRole == 1 || genegrateRole == 1){
+ msg.setCode(4);
+ }
+ return msg;
+ }
+ return null;
+ }
+}
+
+
diff --git a/src/main/java/com/emr/service/ipml/Emr_Archive_DetailServiceImpl.java b/src/main/java/com/emr/service/ipml/Emr_Archive_DetailServiceImpl.java
new file mode 100644
index 0000000..ba215e1
--- /dev/null
+++ b/src/main/java/com/emr/service/ipml/Emr_Archive_DetailServiceImpl.java
@@ -0,0 +1,21 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 15:41
+ * Description:病历文件归类管理
+ */
+package com.emr.service.ipml;
+
+import com.emr.dao.Emr_Archive_DetailMapper;
+import com.emr.service.Emr_Archive_DetailService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+@Service
+public class Emr_Archive_DetailServiceImpl implements Emr_Archive_DetailService {
+
+ @Autowired
+ private Emr_Archive_DetailMapper emrArchiveDetailMapper;
+}
+
+
diff --git a/src/main/java/com/emr/service/ipml/Emr_DictionaryServiceImpl.java b/src/main/java/com/emr/service/ipml/Emr_DictionaryServiceImpl.java
new file mode 100644
index 0000000..f89462a
--- /dev/null
+++ b/src/main/java/com/emr/service/ipml/Emr_DictionaryServiceImpl.java
@@ -0,0 +1,49 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/26 15:51
+ * Description:
+ */
+package com.emr.service.ipml;
+
+import com.emr.dao.Emr_Archive_DetailMapper;
+import com.emr.dao.Emr_DictionaryMapper;
+import com.emr.entity.Emr_Dictionary;
+import com.emr.service.Emr_DictionaryService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import java.util.List;
+
+@Service
+public class Emr_DictionaryServiceImpl implements Emr_DictionaryService {
+
+ @Autowired
+ private Emr_DictionaryMapper emrDictionaryMapper;
+ @Override
+ public List dicByTypeCode(Emr_Dictionary emrDictionary) {
+ return emrDictionaryMapper.dicByTypeCode(emrDictionary);
+ }
+
+ @Override
+ public List dicByClo(Emr_Dictionary emrDictionary) {
+ return emrDictionaryMapper.dicByClo(emrDictionary);
+ }
+
+ @Override
+ public int insertSel(Emr_Dictionary emrDictionary) {
+ return emrDictionaryMapper.insertSel(emrDictionary);
+ }
+
+ @Override
+ public int delById(Integer id) {
+ return emrDictionaryMapper.delById(id);
+ }
+
+ @Override
+ public int updateCloById(Emr_Dictionary emrDictionary) {
+ return emrDictionaryMapper.updateCloById(emrDictionary);
+ }
+}
+
+
diff --git a/src/main/java/com/emr/service/ipml/Emr_Fault_DetailServiceImpl.java b/src/main/java/com/emr/service/ipml/Emr_Fault_DetailServiceImpl.java
new file mode 100644
index 0000000..79db32b
--- /dev/null
+++ b/src/main/java/com/emr/service/ipml/Emr_Fault_DetailServiceImpl.java
@@ -0,0 +1,142 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 15:43
+ * Description:缺陷管理
+ */
+package com.emr.service.ipml;
+
+import com.emr.dao.Emr_Fault_DetailMapper;
+import com.emr.entity.*;
+import com.emr.service.Archive_MasterService;
+import com.emr.service.Emr_DictionaryService;
+import com.emr.service.Emr_Fault_DetailService;
+import com.emr.service.Emr_Fault_TypeService;
+import com.emr.util.Msg;
+import com.emr.vo.User;
+import com.github.pagehelper.Page;
+import com.github.pagehelper.PageHelper;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.shiro.util.CollectionUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
+
+import java.util.Arrays;
+import java.util.List;
+
+@Service
+@Transactional
+public class Emr_Fault_DetailServiceImpl implements Emr_Fault_DetailService {
+
+ @Autowired
+ private Emr_Fault_DetailMapper emrFaultDetailMapper;
+
+ @Autowired
+ private Emr_Fault_TypeService emrFaultTypeService;
+
+ @Autowired
+ private Emr_DictionaryService emrDictionaryService;
+ @Autowired
+ private Archive_MasterService archiveMasterService;
+ @Autowired
+ private StatisticsService statisticsService;
+ /**
+ * 根据条件查询缺陷列表
+ * 病案终审退回
+ * @param emrFaultVo
+ * @return
+ */
+ @Override
+ public OffsetLimitPage selectByCol(Emr_Fault_Vo emrFaultVo, Integer offset, Integer limit) {
+ PageHelper.offsetPage(offset, limit);
+ List list = selectByCol(emrFaultVo);
+ return new OffsetLimitPage((Page) list);
+ }
+
+ @Override
+ public List selectByCol(Emr_Fault_Vo emrFaultVo) {
+ List list = emrFaultDetailMapper.selectByCol(emrFaultVo);
+ Emr_Dictionary dic = new Emr_Dictionary();
+ dic.setEffective(1);
+ dic.setTypecode("dept_code");
+ //科室列表
+ List dicList = emrDictionaryService.dicByTypeCode(dic);
+ //获取缺陷类别列表
+ Emr_Fault_Type obj = new Emr_Fault_Type();
+ obj.setEffective(1);
+ List typeLis = emrFaultTypeService.selectByCol(obj);
+ Msg role = archiveMasterService.getRole();
+ List userList = statisticsService.getUserList();
+ if(null != role) {
+ for (int i = 0; i < list.size(); i++) {
+ //根据状态code转换状态及判断显示按钮
+ //计算属于哪种审核角色
+ String archivestate = list.get(i).getArchivestate();
+ if (StringUtils.isNotBlank(archivestate)) {
+ //转换中文状态
+ Integer status = Integer.valueOf(archivestate);
+ archivestate = EnumVerify.DocState.GetStepName(status, role.getCode());
+ list.get(i).setArchivestate(archivestate);
+ }
+ //替换科室
+ for (int k = 0; k < dicList.size(); k++) {
+ String deptName = list.get(i).getDeptName();
+ //入院科室dept_admission_to
+ String dept2 = list.get(i).getDeptAdmissionTo();
+
+ if ((deptName != null && deptName.equals(dicList.get(k).getCode())) || (dept2 != null && dept2.equals(dicList.get(k).getCode()))) {
+ //出院科室
+ deptName = deptName.replace(deptName, dicList.get(k).getName());
+ list.get(i).setDeptName(deptName);
+
+ dept2 = dept2.replace(dept2, dicList.get(k).getName());
+ list.get(i).setDeptAdmissionTo(dept2);
+ }
+ }
+
+ String assortId = list.get(i).getAssortId();
+ if (assortId != "" && assortId != null) {
+ String[] assorArr = assortId.split(",");
+ //替换类别
+ for (int j = 0; j < typeLis.size(); j++) {
+ String id = String.valueOf(typeLis.get(j).getId());
+ if (Arrays.asList(assorArr).contains(id)) {
+ assortId = assortId.replace(id, typeLis.get(j).getTypeName());
+ list.get(i).setAssortId(assortId);
+ }
+ }
+ }
+ //替换姓名
+ if(!CollectionUtils.isEmpty(userList)) {
+ //转换姓名
+ String userName = list.get(i).getCreater();
+ for (User user : userList) {
+ if (StringUtils.isNotBlank(userName) && userName.equals(user.getUserName())) {
+ list.get(i).setCreater(user.getName());
+ break;
+ }
+ }
+ }
+ }
+ }
+ return list;
+ }
+
+ @Override
+ public int updateCloByPrimaryKey(Emr_Fault_Detail emrFaultDetail) {
+ return emrFaultDetailMapper.updateCloByPrimaryKey(emrFaultDetail);
+ }
+
+ @Override
+ public Emr_Fault_Detail selectByArchiveDetailId(Emr_Fault_Detail record) {
+ return emrFaultDetailMapper.selectByArchiveDetailId(record);
+ }
+
+ @Override
+ public int insertSel(Emr_Fault_Detail record) {
+ return emrFaultDetailMapper.insertSel(record);
+ }
+}
+
+
diff --git a/src/main/java/com/emr/service/ipml/Emr_Fault_TypeServiceImpl.java b/src/main/java/com/emr/service/ipml/Emr_Fault_TypeServiceImpl.java
new file mode 100644
index 0000000..2c35547
--- /dev/null
+++ b/src/main/java/com/emr/service/ipml/Emr_Fault_TypeServiceImpl.java
@@ -0,0 +1,49 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 15:46
+ * Description:缺陷类别管理
+ */
+package com.emr.service.ipml;
+
+import com.emr.dao.Emr_Fault_TypeMapper;
+import com.emr.entity.Emr_Fault_Type;
+import com.emr.service.Emr_Fault_TypeService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import java.util.List;
+
+@Service
+public class Emr_Fault_TypeServiceImpl implements Emr_Fault_TypeService {
+
+ @Autowired
+ private Emr_Fault_TypeMapper emrFaultTypeMapper;
+
+ @Override
+ public List selectByCol(Emr_Fault_Type record) {
+ return emrFaultTypeMapper.selectByCol(record);
+ }
+
+ @Override
+ public int updateByClo(Emr_Fault_Type record) {
+ return emrFaultTypeMapper.updateByClo(record);
+ }
+
+ @Override
+ public int insertClo(Emr_Fault_Type record) {
+ return emrFaultTypeMapper.insertClo(record);
+ }
+
+ @Override
+ public int delById(Integer id) {
+ return emrFaultTypeMapper.delById(id);
+ }
+
+ @Override
+ public Emr_Fault_Type selectById(Integer id) {
+ return emrFaultTypeMapper.selectById(id);
+ }
+}
+
+
diff --git a/src/main/java/com/emr/service/ipml/Emr_PictureServiceImpl.java b/src/main/java/com/emr/service/ipml/Emr_PictureServiceImpl.java
new file mode 100644
index 0000000..24f4811
--- /dev/null
+++ b/src/main/java/com/emr/service/ipml/Emr_PictureServiceImpl.java
@@ -0,0 +1,51 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 15:48
+ * Description:
+ */
+package com.emr.service.ipml;
+
+import com.emr.dao.Emr_PictureMapper;
+import com.emr.entity.Emr_Picture;
+import com.emr.service.Emr_PictureService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import java.util.List;
+
+@Service
+public class Emr_PictureServiceImpl implements Emr_PictureService {
+
+ @Autowired
+ private Emr_PictureMapper emrPictureMapper;
+
+ @Override
+ public Emr_Picture selectByid(String id) {
+ return emrPictureMapper.selectByid(id);
+ }
+
+ @Override
+ public int insertSel(Emr_Picture record) {
+ return emrPictureMapper.insertSel(record);
+ }
+
+ @Override
+ public int updateCloByIdOrFlay(Emr_Picture record) {
+ return emrPictureMapper.updateCloByIdOrFlay(record);
+ }
+
+ @Override
+ public List selectByClo(Emr_Picture record) {
+ return emrPictureMapper.selectByClo(record);
+ }
+
+ @Override
+ public int deleteById(String id) {
+ return emrPictureMapper.deleteById(id);
+ }
+
+
+}
+
+
diff --git a/src/main/java/com/emr/service/ipml/EnumVerify.java b/src/main/java/com/emr/service/ipml/EnumVerify.java
new file mode 100644
index 0000000..53bce65
--- /dev/null
+++ b/src/main/java/com/emr/service/ipml/EnumVerify.java
@@ -0,0 +1,480 @@
+package com.emr.service.ipml;
+
+import com.emr.entity.ArchiveFlowRole;
+import org.junit.jupiter.api.Test;
+
+import java.util.ArrayList;
+import java.util.List;
+public class EnumVerify {
+ /**
+ * 审核角色枚举
+ * */
+ public enum Checker
+ {
+ Dortor(1,"医生"),
+ Nurse(2,"护士"),
+ Generate(4,"一般审核者");
+
+ private int code;
+ private String name;
+
+ private Checker(int code, String name)
+ {
+ this.code = code;
+ this.name = name;
+ }
+
+ public int getCode() {
+ return code;
+ }
+
+ public void setCode(int code) {
+ this.code = code;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }}
+
+ /**
+ * 流转节点角色枚举
+ * */
+ public enum DocState
+ {
+ None(1, "初始状态"),
+ DortorSubmit(2, "医生提交"),
+ DortorCheck(4, "医生质控员质控"),
+ DirectorCheck(8, "科主任审核"),
+ NurseSubmit(16, "护士提交"),
+ NurseCheck(32, "护士质控员质控"),
+ HeadNurseCheck(64, "护士长审核"),
+ MedicalRoomCheck(128, "病案室审核"),
+ DortorBack(256, "医生退回"),
+ NurseBack(512, "护士退回"),
+ CallBacked(1024, "召回");
+
+ private int code;
+ private String name;
+
+ DocState(int code, String name) {
+ this.code = code;
+ this.name = name;
+ }
+
+ DocState() {
+ }
+
+ public int getCode() {
+ return code;
+ }
+
+ public void setCode(int code) {
+ this.code = code;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+/* public static boolean HasCurrentState(int curState, int ds)
+ {
+ return (curState & ds) != 0;
+ }
+
+ public static boolean HasCurrentState(DocState curState, DocState ds)
+ {
+ return (curState.code & ds.code) != 0;
+ }*/
+
+
+ //判断是否包含
+ public static boolean HasCurrentState(int curState, DocState ds)
+ {
+ return (curState & ds.code) != 0;
+ }
+
+ //获取当前步骤的显示名称,可以考虑用JS实现
+ //根据当前状态获取获取状态中文逗号隔开的字符串
+ public static String GetStepName(Integer curState,int role)
+ {
+ String doctorV = "";
+ String nurseV = "";
+ if((Checker.Nurse.code != role)){
+ if(!HasCurrentState(curState, DortorSubmit) && !HasCurrentState(curState, DortorCheck) && !HasCurrentState(curState, DirectorCheck)){
+ doctorV += "," + None.name;
+ }
+ }
+ if((Checker.Dortor.code != role)){
+ if(!HasCurrentState(curState, NurseSubmit) && !HasCurrentState(curState, NurseCheck)){
+ nurseV += "," + None.name;
+ }
+ }
+ if (HasCurrentState(curState, DortorSubmit) && (Checker.Nurse.code != role))
+ {
+ doctorV += ",医生已提交";
+ }
+ if (HasCurrentState(curState, DortorCheck) && (Checker.Nurse.code != role))
+ {
+ doctorV += ",医生质控员已质控";
+ }
+ if (HasCurrentState(curState, DirectorCheck) && (Checker.Nurse.code != role))
+ {
+ doctorV += ",科主任已质控";
+ }
+ if (HasCurrentState(curState, NurseSubmit) && (Checker.Dortor.code != role))
+ {
+ nurseV += ",护士已提交";
+ }
+ if (HasCurrentState(curState, NurseCheck) && (Checker.Dortor.code != role))
+ {
+ nurseV += ",护士质控员已质控";
+ }
+ String tmpV = "";
+ if (HasCurrentState(curState, DortorBack))
+ {
+ if(Checker.Nurse.code != role){
+ doctorV = "医生退回";
+ }
+ }
+ if (HasCurrentState(curState, NurseBack))
+ {
+ if(Checker.Dortor.code != role){
+ nurseV = "护士退回";
+ }
+ }
+ if(Checker.Dortor.code == role){
+ tmpV = doctorV;
+ }else if(Checker.Nurse.code == role){
+ tmpV = nurseV;
+ }else if(Checker.Generate.code == role){
+ if("护士退回".equals(nurseV)){
+ tmpV = doctorV + "," + nurseV;
+ }else{
+ tmpV = doctorV + nurseV;
+ }
+ }
+ if (HasCurrentState(curState, HeadNurseCheck))
+ {
+ tmpV = "护士长已质控";
+ }
+ if (HasCurrentState(curState, MedicalRoomCheck))
+ {
+ tmpV = "已归档";
+ }
+ if (HasCurrentState(curState, CallBacked))
+ {
+ tmpV = "病案室审核";
+ }
+ if(tmpV.startsWith(","))
+ {
+ tmpV = tmpV.substring(1);
+ }
+
+ return tmpV;
+ }
+
+ //获取当前步骤所包含的枚举值,可以返回多个值
+ public static ArrayList GetCurrentStepContainStates(int curState) throws Exception
+ {
+ ArrayList rets = new ArrayList<>();
+ if (HasCurrentState(curState, DortorSubmit))
+ {
+ rets.add(DortorSubmit.code);
+ }
+ if (HasCurrentState(curState, DortorCheck))
+ {
+ rets.add(DortorCheck.code);
+ }
+ if (HasCurrentState(curState, DirectorCheck))
+ {
+ rets.add(DirectorCheck.code);
+ }
+ if (HasCurrentState(curState, NurseSubmit))
+ {
+ rets.add(NurseSubmit.code);
+ }
+ if (HasCurrentState(curState, NurseCheck))
+ {
+ rets.add(NurseCheck.code);
+ }
+ if (HasCurrentState(curState, HeadNurseCheck))
+ {
+ rets.add(HeadNurseCheck.code);
+ }
+ if (HasCurrentState(curState, MedicalRoomCheck))
+ {
+ rets.add(MedicalRoomCheck.code);
+ }
+ if (HasCurrentState(curState, DortorBack))
+ {
+ rets.add(DortorBack.code);
+ }
+ if (HasCurrentState(curState, NurseBack))
+ {
+ rets.add(NurseBack.code);
+ }
+ if (HasCurrentState(curState, None))
+ {
+ rets.add(None.code);
+ }
+ return rets;
+ }
+ //医生累加code
+ public static int GetNextStepCode_Dortor(int curState,List flowRoles) throws Exception
+ {
+ //定义医生提交是否有效
+ int doctorSubmitEffective = 0;
+ //定义医生质控员是否有效
+ int dortorCheckEffective = 0;
+ //定义科主任审核是否有效
+ int directorCheckEffective = 0;
+ if(null != flowRoles && !flowRoles.isEmpty()) {
+ for (ArchiveFlowRole flowRole : flowRoles) {
+ if (flowRole.getCode().equals(DortorSubmit.code+"")){
+ doctorSubmitEffective = flowRole.getEffective();
+ }
+ if (flowRole.getCode().equals(DortorCheck.code+"")){
+ dortorCheckEffective = flowRole.getEffective();
+ }
+ if (flowRole.getCode().equals(DirectorCheck.code+"")){
+ directorCheckEffective = flowRole.getEffective();
+ }
+ //如果遍历完立即退出循环
+ if(doctorSubmitEffective == 1 && dortorCheckEffective == 1 && directorCheckEffective == 1){
+ break;
+ }
+ }
+ }
+ if(!HasCurrentState(curState, DortorSubmit) && doctorSubmitEffective == 1)
+ {
+ //有退回情况,需减去医生退回code再加当前提交
+ int state = curState ^ DortorBack.code | DortorSubmit.code;
+ //无退回情况,^退回编码会更大,不需要^退回编码
+ if(state > (curState | DortorSubmit.code)){
+ return curState | DortorSubmit.code;
+ }else{
+ //否则需要减去医生退回部分
+ return state;
+ }
+ }
+ if(!HasCurrentState(curState, DortorCheck) && dortorCheckEffective == 1)
+ {
+ return curState | DortorCheck.code;
+ }
+ if(!HasCurrentState(curState, DirectorCheck) && directorCheckEffective == 1)
+ {
+ return curState | DirectorCheck.code;
+ }
+ /* if(HasCurrentState(curState,DirectorCheck))
+ {
+ if(HasCurrentState(curState, NurseCheck))
+ {
+ if(HasCurrentState(curState, HeadNurseCheck))
+ {
+ return curState;
+ }
+ else
+ {
+ return curState | HeadNurseCheck.code;
+ }
+ }
+ else
+ {
+ return curState;
+ }
+ }*/
+ throw new Exception("医生提交的状态未知。");
+ }
+
+ //护士累加code
+ public static int GetNextStepCode_Nurse(int curState,List flowRoles) throws Exception
+ {
+ int nurseSubmitEffective = 0;
+ int nurseCheckEffective = 0;
+ if(null != flowRoles && !flowRoles.isEmpty()) {
+ for (ArchiveFlowRole flowRole : flowRoles) {
+ if (flowRole.getCode().equals(NurseSubmit.code+"")){
+ nurseSubmitEffective = flowRole.getEffective();
+ }
+ if (flowRole.getCode().equals(NurseCheck.code+"")){
+ nurseCheckEffective = flowRole.getEffective();
+ }
+ //两者都遍历到立即退出循环
+ if(nurseSubmitEffective == 1 && nurseCheckEffective == 1){
+ break;
+ }
+ }
+ }
+ if(!HasCurrentState(curState, NurseSubmit) && nurseSubmitEffective == 1)
+ {
+ int state = curState ^ NurseBack.code | NurseSubmit.code;
+ if(state > (curState | NurseSubmit.code)){
+ return curState | NurseSubmit.code;
+ }else{
+ return state;
+ }
+ }
+ if(!HasCurrentState(curState, NurseCheck) && nurseCheckEffective == 1)
+ {
+ return curState | NurseCheck.code;
+ }
+ throw new Exception("护士提交的状态未知。");
+ }
+
+ //一般审核者累加code
+ public static int GetNextStepCode_Generate(int curState,List flowRoles) throws Exception
+ {
+ int headNurseCheckEffective = 0;
+ int medicalRoomCheckEffective = 0;
+ if(null != flowRoles && !flowRoles.isEmpty()) {
+ for (ArchiveFlowRole flowRole : flowRoles) {
+ if (flowRole.getCode().equals(HeadNurseCheck.code+"")){
+ headNurseCheckEffective = flowRole.getEffective();
+ }
+ if (flowRole.getCode().equals(MedicalRoomCheck.code+"")){
+ medicalRoomCheckEffective = flowRole.getEffective();
+ }
+ }
+ }
+ if (!HasCurrentState(curState, HeadNurseCheck) && headNurseCheckEffective == 1)
+ {
+ return HeadNurseCheck.code;
+ }
+ if(!HasCurrentState(curState, MedicalRoomCheck) && medicalRoomCheckEffective == 1)
+ {
+ return MedicalRoomCheck.code;
+ }
+ throw new Exception("一般工作者提交的状态未知。");
+ }
+
+ //累加当前code
+ public static int GetNextStepCode(int curState, Integer isDortor,List flowRoles) throws Exception
+ {
+ if(curState == None.code)
+ {
+ if(isDortor == Checker.Dortor.code)
+ {
+ return DortorSubmit.code;
+ }
+ if(isDortor == Checker.Nurse.code)
+ {
+ return NurseSubmit.code;
+ }
+ throw new Exception("初始状态,只有可能是医生或护士进行提交");
+ }
+
+ if(isDortor == Checker.Dortor.code)
+ {
+ return GetNextStepCode_Dortor(curState,flowRoles);
+ }
+ if(isDortor == Checker.Nurse.code)
+ {
+ return GetNextStepCode_Nurse(curState,flowRoles);
+ }
+ if(isDortor == Checker.Generate.code)
+ {
+ return GetNextStepCode_Generate(curState,flowRoles);
+ }
+ throw new Exception(String.format("参数出错 %d", curState));
+ }
+ //医生退回
+ public static int backToDoctor(int curState,List flowRoles) throws Exception{
+ if(curState != HeadNurseCheck.code && curState != CallBacked.code){
+ //不是病案室退回节点,删除医生code
+ if(HasCurrentState(curState, DirectorCheck)){
+ curState ^= DirectorCheck.code;
+ }
+ if(HasCurrentState(curState, DortorCheck)){
+ curState ^= DortorCheck.code;
+ }
+ if(HasCurrentState(curState, DortorSubmit)){
+ curState ^= DortorSubmit.code;
+ }
+ if(HasCurrentState(curState, HeadNurseCheck)){
+ curState ^= HeadNurseCheck.code;
+ }
+ }else{
+ curState = 0;
+ //是病案室退回节点,累加护士code
+ for(ArchiveFlowRole flowRole : flowRoles) {
+ if (flowRole.getEffective() == 1) {
+ if(flowRole.getCode().equals(NurseSubmit.getCode()+"")){
+ curState = curState | NurseSubmit.getCode();
+ }else if(flowRole.getCode().equals(NurseCheck.getCode()+"")){
+ curState = curState | NurseCheck.getCode();
+ }
+ }
+ }
+ }
+ return curState | DortorBack.code;
+ }
+ //护士退回
+ public static int backToNurse(int curState,List flowRoles) throws Exception{
+ if(curState != HeadNurseCheck.code && curState != CallBacked.code) {
+ //不是病案室退回节点,删除护士code
+ if(HasCurrentState(curState, NurseCheck)){
+ curState ^= NurseCheck.code;
+ }
+ if(HasCurrentState(curState, NurseSubmit)){
+ curState ^= NurseSubmit.code;
+ }
+ if(HasCurrentState(curState, HeadNurseCheck)){
+ curState ^= HeadNurseCheck.code;
+ }
+ }else{
+ curState = 0;
+ //是病案室退回节点,累加医生节点
+ for(ArchiveFlowRole flowRole : flowRoles) {
+ if (flowRole.getEffective() == 1) {
+ if(flowRole.getCode().equals(DortorSubmit.getCode()+"")){
+ curState = curState | DortorSubmit.getCode();
+ }else if(flowRole.getCode().equals(DortorCheck.getCode()+"")){
+ curState = curState | DortorCheck.getCode();
+ }else if(flowRole.getCode().equals(DirectorCheck.getCode()+"")){
+ curState = curState | DirectorCheck.getCode();
+ }
+ }
+ }
+ }
+ return curState | NurseBack.code;
+ }
+ //医生护士全退回
+ public static int backToAll(){
+ return DortorBack.code | NurseBack.code;
+ }
+ }
+
+
+
+ @Test
+ public void Test() {
+ int curState= 2;
+ try
+ {
+ /* String name = DocState.None.name;
+ System.out.println(name);
+ ArrayList integers = DocState.GetCurrentStepContainStates(curState);
+ for (int i = 0; i < integers.size(); i++) {
+ System.out.println(integers.get(i));
+ }*/
+ //String s = DocState.GetStepName(curState);
+ //System.out.println(s);
+// List roles = new ArrayList<>();
+// int stepName = DocState.backToDoctor(curState);
+// stepName = DocState.GetNextStepCode(stepName,Checker.Dortor,roles);
+// System.out.println(stepName);
+ }
+ catch (Exception ex)
+ {
+ System.out.println(ex.getMessage());
+ }
+ }
+
+}
diff --git a/src/main/java/com/emr/service/ipml/HolidaySetService.java b/src/main/java/com/emr/service/ipml/HolidaySetService.java
new file mode 100644
index 0000000..7f5a405
--- /dev/null
+++ b/src/main/java/com/emr/service/ipml/HolidaySetService.java
@@ -0,0 +1,135 @@
+package com.emr.service.ipml;
+
+import com.emr.dao.EmrHolidaySetMapper;
+import com.emr.entity.*;
+import com.emr.util.AccountDate;
+import com.github.pagehelper.Page;
+import com.github.pagehelper.PageHelper;
+import org.apache.commons.lang3.StringUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
+
+import java.text.SimpleDateFormat;
+import java.util.*;
+
+@Service
+@Transactional
+public class HolidaySetService {
+ @Autowired
+ private EmrHolidaySetMapper holidaySetMapper;
+ public OffsetLimitPage selectByColumn(EmrHolidaySetVo holidaySetVo){
+ PageHelper.offsetPage(holidaySetVo.getOffset(), holidaySetVo.getLimit());
+ List list = holidaySetMapper.selectByColumn(holidaySetVo);
+ return new OffsetLimitPage((Page) list);
+ }
+
+ /**
+ * 批量新增
+ * @param startTime
+ * @param endTime
+ * @param checkBoxes
+ * @param flag
+ * @throws Exception
+ */
+ public void update(String startTime,String endTime,String checkBoxes,Integer flag) throws Exception{
+ Map map = new HashMap<>();
+ //将选中星期几添加进map
+ String[] checkBoxList = checkBoxes.split(",");
+ for(String checkBoxed:checkBoxList){
+ if(StringUtils.isNoneBlank(checkBoxed)){
+ map.put(Integer.valueOf(checkBoxed),checkBoxed);
+ }
+ }
+ List dateList = AccountDate.getEveryday(startTime,endTime);
+ //查询时间段记录
+ List emrHolidaySets = holidaySetMapper.selectAllByDates(startTime, endTime);
+ //定义批量添加集合
+ List insertList = new ArrayList<>();
+ //定义批量更新集合
+ List updateList = new ArrayList<>();
+ //定义批量修改的时间字符串
+ String dates = "";
+ SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+ //没有记录添加进insertList
+ for(String date : dateList){
+ //查询几天星期几
+ Integer weekDay = AccountDate.getWeekDayByStr(date);
+ //无记录,全部添加进批量添加集合
+ EmrHolidaySet holidaySet = new EmrHolidaySet();
+ holidaySet.setDate(date);
+ holidaySet.setUpdateTime(fmt.format(new Date()));
+ if(flag == 1){
+ if(map.containsKey(weekDay)){
+ holidaySet.setFlag(Short.valueOf("1"));
+ }else{
+ holidaySet.setFlag(Short.valueOf("2"));
+ }
+ }else{
+ if(map.containsKey(weekDay)){
+ holidaySet.setFlag(Short.valueOf("2"));
+ }else{
+ holidaySet.setFlag(Short.valueOf("1"));
+ }
+ }
+ //如果存在记录就区分更新部分还是添加部分
+ if(null != emrHolidaySets && !emrHolidaySets.isEmpty()){
+ boolean isExist = false;
+ for (int i = 0; i < emrHolidaySets.size(); i++) {
+ if(emrHolidaySets.get(i).getDate().equals(date)){
+ isExist = true;
+ holidaySet.setId(emrHolidaySets.get(i).getId());
+ break;
+ }
+ }
+ //如果存在,添加进更新的字符串
+ if(isExist){
+ updateList.add(holidaySet);
+ }else{
+ //否则添加进批量添加集合
+ insertList.add(holidaySet);
+ }
+ }else{
+ //数据库无数,添加全部记录
+ insertList.add(holidaySet);
+ }
+ }
+ int colCount = holidaySetMapper.selectColByTableName("emr_holiday_set");
+ int simpleInsertCount = 2100/(colCount);
+ if(null != insertList && !insertList.isEmpty()){
+ List list = new ArrayList<>();
+ for (int i = 0; i < insertList.size(); i++) {
+ list.add(insertList.get(i));
+ if(list.size()%simpleInsertCount == 0 || i == insertList.size() - 1){
+ holidaySetMapper.SampleInsert(list);
+ list.clear();
+ }
+ }
+ }
+ if(null != updateList && !updateList.isEmpty()){
+ List list = new ArrayList<>();
+ for (int i = 0; i < updateList.size(); i++) {
+ list.add(updateList.get(i));
+ if(list.size()%simpleInsertCount == 0 || i == updateList.size() - 1){
+ holidaySetMapper.SampleUpdate(updateList);
+ list.clear();
+ }
+ }
+ }
+ }
+
+ /**
+ * 单个修改状态
+ * @param flag
+ * @param id
+ */
+ public void update(Integer flag,Integer id){
+ EmrHolidaySet emrHolidaySet = holidaySetMapper.selectByPrimaryKey(id);
+ if(flag == 1){
+ emrHolidaySet.setFlag(Short.valueOf("2"));
+ }else{
+ emrHolidaySet.setFlag(Short.valueOf("1"));
+ }
+ holidaySetMapper.updateByPrimaryKeySelective(emrHolidaySet);
+ }
+}
diff --git a/src/main/java/com/emr/service/ipml/StatisticsService.java b/src/main/java/com/emr/service/ipml/StatisticsService.java
new file mode 100644
index 0000000..1939f92
--- /dev/null
+++ b/src/main/java/com/emr/service/ipml/StatisticsService.java
@@ -0,0 +1,214 @@
+package com.emr.service.ipml;
+
+import com.alibaba.fastjson.JSON;
+import com.emr.dao.StatisticsMapper;
+import com.emr.dao.TUuInfoMapper;
+import com.emr.dao.TUuPrintMapper;
+import com.emr.entity.Archive_Master_Vo;
+import com.emr.entity.OffsetLimitPage;
+import com.emr.entity.TUuPrint;
+import com.emr.vo.*;
+import com.github.pagehelper.Page;
+import com.github.pagehelper.PageHelper;
+import net.sf.json.JSONObject;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.http.client.methods.CloseableHttpResponse;
+import org.apache.http.client.methods.HttpGet;
+import org.apache.http.impl.client.HttpClients;
+import org.apache.http.util.EntityUtils;
+import org.apache.shiro.util.CollectionUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
+import org.springframework.web.context.request.RequestContextHolder;
+import org.springframework.web.context.request.ServletRequestAttributes;
+
+import javax.servlet.http.HttpServletRequest;
+import java.text.SimpleDateFormat;
+import java.util.ArrayList;
+import java.util.Date;
+import java.util.List;
+
+/**
+ * @ProjectName:
+ * @Description:
+ * @Param 传输参数
+ * @Return
+ * @Author: 曾文和
+ * @CreateDate: 2020/1/8 15:54
+ * @UpdateUser: 曾文和
+ * @UpdateDate: 2020/1/8 15:54
+ * @UpdateRemark: 更新说明
+ * @Version: 1.0
+ */
+@Service
+@Transactional
+public class StatisticsService {
+ @Value("${POWER_URLHEAD}")
+ private String POWER_URLHEAD;
+ @Autowired
+ private StatisticsMapper statisticsMapper;
+ @Autowired
+ private TUuPrintMapper uuPrintMapper;
+ @Autowired
+ private TUuInfoMapper uuInfoMapper;
+ //终审按天统计
+ public List getFinalStatistics(Integer offset, Integer limit, String startDate, String endDate,String sql) {
+ if(null != offset && null != limit){
+ PageHelper.offsetPage(offset, limit);
+ }
+ List list = statisticsMapper.finalStatistics(startDate, endDate,sql);
+ //转换姓名
+ List userList = getUserList();
+ if(!CollectionUtils.isEmpty(list) && !CollectionUtils.isEmpty(userList)) {
+ for (FinalAndFirstStatistics statistics : list) {
+ for (User user : userList) {
+ if (StringUtils.isNotBlank(statistics.getCheckCode()) && statistics.getCheckCode().equals(user.getUserName())) {
+ statistics.setCheckName(user.getName());
+ break;
+ }
+ }
+ }
+ }
+ return list;
+ }
+
+
+ //初审按天统计
+ public List getFirstStatistics(HttpServletRequest request, Integer offset, Integer limit, String startDate, String endDate,String sql) {
+ if(null != offset && null != limit){
+ PageHelper.offsetPage(offset, limit);
+ }
+ List list = statisticsMapper.firstStatistics(startDate, endDate,sql);
+ //转换姓名
+ List userList = getUserList();
+ if(!CollectionUtils.isEmpty(list) && !CollectionUtils.isEmpty(userList)) {
+ for (FinalAndFirstStatistics statistics : list) {
+ for (User user : userList) {
+ if (statistics.getCheckCode().equals(user.getUserName())) {
+ statistics.setCheckName(user.getName());
+ break;
+ }
+ }
+ }
+ }
+ return list;
+ }
+
+ /**
+ * 终审审核明细
+ * @param offset
+ * @param limit
+ * @param disStartDate
+ * @param disEndDate
+ * @param archiveMasterVo
+ * @return
+ */
+ public OffsetLimitPage getStatisticsDetail(Integer offset, Integer limit,String disStartDate, String disEndDate, Archive_Master_Vo archiveMasterVo,Integer flag) {
+ if(null != offset && null != limit){
+ PageHelper.offsetPage(offset, limit);
+ }
+ List list = getDetailList(disStartDate, disEndDate, archiveMasterVo,flag,null);
+ return new OffsetLimitPage((Page) list);
+ }
+
+ public List getDetailList(String disStartDate, String disEndDate, Archive_Master_Vo archiveMasterVo,Integer flag,String sql){
+ //转换姓名
+ List userList = getUserList();
+ String checkDoctor = archiveMasterVo.getCheckDoctor();
+ //模糊搜索审核姓名转换工号
+ if(StringUtils.isNoneBlank(checkDoctor)){
+ String checkNames = "";
+ for(User user:userList){
+ if(StringUtils.isNoneBlank(user.getName()) && user.getName().contains(checkDoctor)){
+ checkNames += "'" + user.getUserName() + "',";
+ }
+ }
+ if(StringUtils.isNotBlank(checkNames)){
+ checkNames = checkNames.substring(0,checkNames.length()-1);
+ archiveMasterVo.setCheckDoctor(checkNames);
+ }else{
+ archiveMasterVo.setCheckDoctor("'" + checkDoctor + "'");
+ }
+ }
+ List list = statisticsMapper.statistics(disStartDate,disEndDate,archiveMasterVo,flag,sql);
+ if(!CollectionUtils.isEmpty(list) && !CollectionUtils.isEmpty(userList)) {
+ for (Archive_Master_Vo statistics : list) {
+ for (User user : userList) {
+ if (StringUtils.isNotBlank(statistics.getCheckDoctor()) && statistics.getCheckDoctor().equals(user.getUserName())) {
+ statistics.setCheckName(user.getName());
+ }
+ if (StringUtils.isNotBlank(statistics.getCheckedDoctor()) && statistics.getCheckedDoctor().equals(user.getUserName())) {
+ statistics.setCheckedName(user.getName());
+ }
+ }
+ }
+ }
+ return list;
+ }
+
+ //复印记录报表
+ public List getPrintCount(TUuPrintSearch search){
+ List list = uuPrintMapper.getPrintCount(search);
+ return list;
+ }
+
+ //复印记录明细
+ public List getPrintInfo(TUuPrintSearch search){
+ List list = uuPrintMapper.getPrintInfo(search);
+ if(null != list && !list.isEmpty()){
+ SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+ for(TUuPrintVo printVo : list){
+ Date cpytime = printVo.getCpytime();
+ printVo.setPrintTime(fmt.format(cpytime));
+ }
+ }
+ return list;
+ }
+
+ //扫描记录报表
+ public List getScanCount(TUuPrintSearch search){
+ List list = uuInfoMapper.getScanCount(search);
+ return list;
+ }
+
+ //扫描记录明细
+ public List getScanInfo(TUuPrintSearch search){
+ List list = uuInfoMapper.getScanInfo(search);
+ return list;
+ }
+
+ public List getUserList(){
+ HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
+ List userList = new ArrayList<>();
+ try {
+ //查询缓存时候存在
+ userList = (List)request.getSession().getAttribute("USER_LIST");
+ if(null == userList || userList.isEmpty()){
+ String userName = (String) request.getSession().getAttribute("userSession");
+ //调用接口查询
+ String resultString = "";
+ // 创建uri
+ String url = POWER_URLHEAD+"/font/getUserList?userName="+userName;
+ // 执行请求
+ CloseableHttpResponse response = HttpClients.createDefault().execute(new HttpGet(url));
+ // 判断返回状态是否为200
+ if (response.getStatusLine().getStatusCode() == 200) {
+ resultString = EntityUtils.toString(response.getEntity(), "UTF-8");
+ }
+ JSONObject jsonObject = JSONObject.fromObject(resultString);
+ String extend = jsonObject.getString("extend");
+ JSONObject extendObject = JSONObject.fromObject(extend);
+ String userList1 = extendObject.getString("userList");
+ userList = (List) JSON.parseArray(userList1,User.class);
+ //设置进session
+ request.getSession().setAttribute("USER_LIST",userList);
+ }
+ }catch (Exception e){
+ e.printStackTrace();
+ }
+ return userList;
+ }
+}
+
diff --git a/src/main/java/com/emr/service/ipml/TPrintinfoService.java b/src/main/java/com/emr/service/ipml/TPrintinfoService.java
new file mode 100644
index 0000000..b2640b2
--- /dev/null
+++ b/src/main/java/com/emr/service/ipml/TPrintinfoService.java
@@ -0,0 +1,27 @@
+package com.emr.service.ipml;
+
+import com.emr.dao.TPrintinfoMapper;
+import com.emr.entity.TPrintinfo;
+import com.emr.util.Msg;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import java.util.List;
+
+@Service
+public class TPrintinfoService {
+ @Autowired
+ private TPrintinfoMapper tPrintinfoMapper;
+ public Msg selectIsPrintByPatienId(String patientId){
+ TPrintinfo tPrintinfo = tPrintinfoMapper.selectLockByPatienId(patientId);
+ if(!"0".equals(tPrintinfo.getIsprint())){
+ return Msg.success().add("isPrint","1");
+ }
+ List list = tPrintinfoMapper.selectIsPrintByPatienId(patientId);
+ if(null != list && !list.isEmpty()){
+ return Msg.success().add("isPrint",list.get(0).getIsprint());
+ }else{
+ return Msg.success().add("isPrint","0");
+ }
+ }
+}
diff --git a/src/main/java/com/emr/service/ipml/V_CountServiceImpl.java b/src/main/java/com/emr/service/ipml/V_CountServiceImpl.java
new file mode 100644
index 0000000..948154d
--- /dev/null
+++ b/src/main/java/com/emr/service/ipml/V_CountServiceImpl.java
@@ -0,0 +1,40 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/7/19 15:46
+ * Description:统计管理
+ */
+package com.emr.service.ipml;
+
+import com.emr.dao.V_CountMapper;
+import com.emr.entity.*;
+import com.emr.service.V_CountService;
+import com.emr.vo.V_CountVo;
+import com.github.pagehelper.Page;
+import com.github.pagehelper.PageHelper;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import java.util.Arrays;
+import java.util.List;
+
+@Service
+public class V_CountServiceImpl implements V_CountService {
+ @Autowired
+ private V_CountMapper vCountMapper;
+
+ @Override
+ public List selectByCol(V_CountVo record) {
+ List v_counts = vCountMapper.selectByCol(record);
+ return v_counts;
+ }
+
+ @Override
+ public OffsetLimitPage selectPageByClo(V_CountVo record, Integer offset, Integer limit) {
+ PageHelper.offsetPage(offset, limit);
+ List list = selectByCol(record);
+ return new OffsetLimitPage((Page) list);
+ }
+}
+
+
diff --git a/src/main/java/com/emr/service/ipml/ZdAssortService.java b/src/main/java/com/emr/service/ipml/ZdAssortService.java
new file mode 100644
index 0000000..5b3c8e5
--- /dev/null
+++ b/src/main/java/com/emr/service/ipml/ZdAssortService.java
@@ -0,0 +1,31 @@
+package com.emr.service.ipml;
+
+import com.emr.dao.Zd_AssortMapper;
+import com.emr.entity.Zd_Assort;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
+
+import java.util.List;
+
+/**
+ * @ProjectName:
+ * @Description:
+ * @Param 传输参数
+ * @Return
+ * @Author: 曾文和
+ * @CreateDate: 2020/4/22 15:47
+ * @UpdateUser: 曾文和
+ * @UpdateDate: 2020/4/22 15:47
+ * @UpdateRemark: 更新说明
+ * @Version: 1.0
+ */
+@Service
+@Transactional
+public class ZdAssortService {
+ @Autowired
+ private Zd_AssortMapper assortMapper;
+ public List selectAll(Zd_Assort assort){
+ return assortMapper.selectAll(assort);
+ }
+}
diff --git a/src/main/java/com/emr/shiro/MyRealm.java b/src/main/java/com/emr/shiro/MyRealm.java
new file mode 100644
index 0000000..995e854
--- /dev/null
+++ b/src/main/java/com/emr/shiro/MyRealm.java
@@ -0,0 +1,80 @@
+package com.emr.shiro;
+
+import com.alibaba.fastjson.JSONObject;
+import com.emr.util.HttpClientUtils;
+import org.apache.poi.ss.formula.functions.T;
+import org.apache.shiro.SecurityUtils;
+import org.apache.shiro.authc.*;
+import org.apache.shiro.authz.AuthorizationInfo;
+import org.apache.shiro.authz.SimpleAuthorizationInfo;
+import org.apache.shiro.realm.AuthorizingRealm;
+import org.apache.shiro.session.Session;
+import org.apache.shiro.subject.PrincipalCollection;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+
+import java.util.List;
+
+/**
+ * @author HJL
+ * @create 2019/4/29
+ */
+public class MyRealm extends AuthorizingRealm {
+ //获取权限列表
+ /*@Autowired
+ private PermissionService permissionService;
+ //获取用户
+ @Autowired
+ private UserService userService;
+ ////获取用户角色
+ @Autowired
+ private RoleService roleService;*/
+
+ @Value("${powerUrl}")
+ private String powerUrl;
+
+
+ /**
+ * 授权查询回调函数, 进行鉴权但缓存中无用户的授权信息时调用.
+ */
+ @Override
+ protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principalCollection) {
+ //获取登录时输入的用户名
+ String username = (String) principalCollection.getPrimaryPrincipal();
+ if (username != null) {
+ SimpleAuthorizationInfo info = new SimpleAuthorizationInfo();
+ info.addStringPermission("/login");
+ info.addStringPermission("index");
+ info.addRole("0");
+ return info;
+ }
+ return null;
+ }
+
+ /**
+ * 认证回调函数,登录时调用.
+ */
+ @Override
+ protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken authenticationToken) throws AuthenticationException {
+ UsernamePasswordToken token = (UsernamePasswordToken) authenticationToken;
+ //通过表单接收的用户名
+ String username = token.getUsername();
+ String userpwd = String.valueOf(token.getPassword());
+ if (username != null && !"".equals(username)) {
+ String url = powerUrl+"?sysFlag=emr_medical_record&userName="+ username;
+ JSONObject obj = HttpClientUtils.httpGet(url);
+ if(obj!=null){
+ if((obj.getString("code")).equals("100")){
+ //当验证都通过后,把用户信息放在 session 里
+ Session session = SecurityUtils.getSubject().getSession();
+ session.setAttribute("menuList", obj);
+ session.setAttribute("userSession", username);
+ return new SimpleAuthenticationInfo(username, userpwd, getName());
+ }
+ }
+ }
+ return null;
+ }
+}
+
+
diff --git a/src/main/java/com/emr/util/AccountDate.java b/src/main/java/com/emr/util/AccountDate.java
new file mode 100644
index 0000000..b391bf4
--- /dev/null
+++ b/src/main/java/com/emr/util/AccountDate.java
@@ -0,0 +1,162 @@
+package com.emr.util;
+
+import java.text.DecimalFormat;
+import java.text.ParseException;
+import java.text.SimpleDateFormat;
+import java.util.ArrayList;
+import java.util.Calendar;
+import java.util.Date;
+import java.util.List;
+
+/**
+ * 遍历两个时间段中间的每一天
+ * @author 天涯鬼域
+ * 2019.01.30
+ */
+public class AccountDate {
+
+ private static transient int gregorianCutoverYear = 1582;
+
+ /** 闰年中每月天数 */
+ private static final int[] DAYS_P_MONTH_LY= {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
+
+ /** 非闰年中每月天数 */
+ private static final int[] DAYS_P_MONTH_CY= {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
+
+ /** 代表数组里的年、月、日 */
+ private static final int Y = 0, M = 1, D = 2;
+
+ /**
+ * 将代表日期的字符串分割为代表年月日的整形数组
+ * @param date
+ * @return
+ */
+ public static int[] splitYMD(String date){
+ date = date.replace("-", "");
+ int[] ymd = {0, 0, 0};
+ ymd[Y] = Integer.parseInt(date.substring(0, 4));
+ ymd[M] = Integer.parseInt(date.substring(4, 6));
+ ymd[D] = Integer.parseInt(date.substring(6, 8));
+ return ymd;
+ }
+
+ /**
+ * 检查传入的参数代表的年份是否为闰年
+ * @param year
+ * @return
+ */
+ public static boolean isLeapYear(int year) {
+ return year >= gregorianCutoverYear ?
+ ((year%4 == 0) && ((year%100 != 0) || (year%400 == 0))) : (year%4 == 0);
+ }
+
+ /**
+ * 日期加1天
+ * @param year
+ * @param month
+ * @param day
+ * @return
+ */
+ private static int[] addOneDay(int year, int month, int day){
+ if(isLeapYear( year )){
+ day++;
+ if( day > DAYS_P_MONTH_LY[month -1 ] ){
+ month++;
+ if(month > 12){
+ year++;
+ month = 1;
+ }
+ day = 1;
+ }
+ }else{
+ day++;
+ if( day > DAYS_P_MONTH_CY[month -1 ] ){
+ month++;
+ if(month > 12){
+ year++;
+ month = 1;
+ }
+ day = 1;
+ }
+ }
+ int[] ymd = {year, month, day};
+ return ymd;
+ }
+
+ /**
+ * 将不足两位的月份或日期补足为两位
+ * @param decimal
+ * @return
+ */
+ public static String formatMonthDay(int decimal){
+ DecimalFormat df = new DecimalFormat("00");
+ return df.format( decimal );
+ }
+
+ /**
+ * 将不足四位的年份补足为四位
+ * @param decimal
+ * @return
+ */
+ public static String formatYear(int decimal){
+ DecimalFormat df = new DecimalFormat("0000");
+ return df.format( decimal );
+ }
+
+ /**
+ * 计算两个日期之间相隔的天数
+ * @param begin
+ * @param end
+ * @return
+ * @throws ParseException
+ */
+ public static long countDay(String begin,String end){
+ SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
+ Date beginDate , endDate;
+ long day = 0;
+ try {
+ beginDate= format.parse(begin);
+ endDate= format.parse(end);
+ day=(endDate.getTime()-beginDate.getTime())/(24*60*60*1000);
+ } catch (ParseException e) {
+ e.printStackTrace();
+ }
+ return day;
+ }
+
+ /**
+ * 以循环的方式计算日期
+ * @param beginDate endDate
+ * @return
+ */
+ public static List getEveryday(String beginDate , String endDate){
+ long days = countDay(beginDate, endDate);
+ int[] ymd = splitYMD( beginDate );
+ List everyDays = new ArrayList();
+ everyDays.add(beginDate);
+ for(int i = 0; i < days; i++){
+ ymd = addOneDay(ymd[Y], ymd[M], ymd[D]);
+ everyDays.add(formatYear(ymd[Y])+"-"+formatMonthDay(ymd[M])+"-"+formatMonthDay(ymd[D]));
+ }
+ return everyDays;
+ }
+
+ /**
+ * 计算字符串日期是星期几
+ * */
+ public static Integer getWeekDayByStr(String date) throws Exception{
+ SimpleDateFormat sim = new SimpleDateFormat("yyyy-MM-dd");
+ Date dt = sim.parse(date);//将指定格式的字符串解析成Date时间对象
+ SimpleDateFormat sim1 = new SimpleDateFormat("yyyy年-MM月-dd日");
+ Calendar ca = Calendar.getInstance();
+ ca.setTime(dt);//将date对象转换为Calendar对象
+ return ca.get(Calendar.DAY_OF_WEEK)-1;
+ }
+ public static void main(String[] args) throws Exception{
+ List list = AccountDate.getEveryday("2007-08-29", "2008-09-02");
+ /*for (String result : list) {
+ System.out.println(result);
+ }*/
+ System.out.println(getWeekDayByStr("2019-12-21"));
+ }
+}
diff --git a/src/main/java/com/emr/util/ActionScopeUtils.java b/src/main/java/com/emr/util/ActionScopeUtils.java
new file mode 100644
index 0000000..90440f6
--- /dev/null
+++ b/src/main/java/com/emr/util/ActionScopeUtils.java
@@ -0,0 +1,42 @@
+package com.emr.util;
+
+
+import org.springframework.web.context.request.RequestContextHolder;
+import org.springframework.web.context.request.ServletRequestAttributes;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpSession;
+
+/**
+ * 关于作用域的操作
+ * @Author:
+ * @Date:
+ * @Version 1.0
+ */
+public class ActionScopeUtils {
+
+ public static HttpSession getSession(HttpServletRequest request){
+ return request.getSession();
+ }
+
+ public static HttpServletRequest getRequest(){
+ return ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
+ }
+
+ public static void setSessionAttribute(String key,Object value){
+ getSession(getRequest()).setAttribute(key,value);
+ }
+
+ public static Object getSessionAttribute(String key){
+ return getSession(getRequest()).getAttribute(key);
+ }
+
+ public static void setRequestAttribute(String key,Object value){
+ getRequest().setAttribute(key,value);
+ }
+
+ public static Object getRequestAttribute(String key){
+ return getRequest().getAttribute(key);
+ }
+
+}
diff --git a/src/main/java/com/emr/util/ExportExcelUtil.java b/src/main/java/com/emr/util/ExportExcelUtil.java
new file mode 100644
index 0000000..351a1c0
--- /dev/null
+++ b/src/main/java/com/emr/util/ExportExcelUtil.java
@@ -0,0 +1,187 @@
+/**
+ * 系统数据导出Excel 生成器
+ * @version 1.0
+ */
+package com.emr.util;
+
+import org.apache.commons.lang3.CharUtils;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.poi.hssf.usermodel.*;
+import org.apache.poi.hssf.util.HSSFColor;
+
+import javax.servlet.http.HttpServletResponse;
+import java.io.OutputStream;
+import java.lang.reflect.Field;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.List;
+
+
+public class ExportExcelUtil {
+
+ private final int SPLIT_COUNT = 1000;
+
+ private static List fieldName = null;
+
+ private static List> fieldData = null;
+
+ private String fileName;
+
+ private HSSFWorkbook workBook = null;
+ public List getFieldName(String tableThNames){
+ String[] names = tableThNames.split(",");
+ List fieldName = new ArrayList<>();
+ if (names != null) {
+ for (int i = 0; i < names.length; i++) {
+ if (StringUtils.isNoneBlank(names[i])) {
+ fieldName.add(names[i]);
+ }
+ }
+ }
+ return fieldName;
+ }
+
+ public List> getFieldData(String fieldCns, Collection list){
+ List> fieldData = new ArrayList>();
+ String[] fieldList = fieldCns.split(",");
+ Object[] objects = list.toArray();
+ for (Object object : objects) {
+ List data = new ArrayList();
+ for (String english : fieldList) {
+ String field = fieldToProperty(english);
+ String value = getFieldValueByFieldName(field,object);
+ data.add(value);
+ }
+ fieldData.add(data);
+ }
+ return fieldData;
+ }
+ public void expordExcel(String tableThNames,String fieldCns,Collection list,String fileName,HttpServletResponse response) throws Exception {
+ this.fieldName = getFieldName(tableThNames);
+ this.fieldData = getFieldData(fieldCns,list);
+ this.fileName = fileName;
+ OutputStream os = response.getOutputStream();
+ response.reset();
+ response.setContentType("application/OCTET-STREAM;charset=gbk");
+ response.setHeader("pragma", "no-cache");
+ fileName = new String(fileName.getBytes("utf-8"), "iso-8859-1");
+ response.setHeader("Content-disposition", "attachment;filename=\"" + fileName + "\"");
+ response.setBufferSize(1024);
+ workBook = createWorkbook();
+ workBook.write(os);
+ os.close();
+ }
+ public HSSFWorkbook createWorkbook() {
+ workBook = new HSSFWorkbook();
+ int rows = fieldData.size();
+ int sheetNum = 0;
+
+ if (rows % SPLIT_COUNT == 0) {
+ sheetNum = rows / SPLIT_COUNT;
+ } else {
+ sheetNum = rows / SPLIT_COUNT + 1;
+ }
+ if(sheetNum == 0){
+ sheetNum = 1;
+ }
+ for (int i = 1; i <= sheetNum; i++) {
+ HSSFSheet sheet = workBook.createSheet("Sheet " + i);
+ HSSFRow headRow = sheet.createRow((short) 0);
+ HSSFCellStyle cellStyle = workBook.createCellStyle();
+ cellStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);
+ cellStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
+
+ HSSFFont font = workBook.createFont();
+ font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
+ font.setColor(HSSFColor.RED.index);
+ font.setFontHeightInPoints((short) 12);
+ cellStyle.setFont(font);
+
+ for (int j = 0; j < fieldName.size(); j++) {
+ HSSFCell cell = headRow.createCell( j);
+ sheet.setColumnWidth(j, 6000);
+ cell.setCellType(HSSFCell.CELL_TYPE_STRING);
+ if(fieldName.get(j) != null){
+ cell.setCellStyle(cellStyle);
+ cell.setCellValue((String) fieldName.get(j));
+ }else{
+ cell.setCellValue("-");
+ }
+ }
+ HSSFCellStyle cellStyle1 = workBook.createCellStyle();
+ cellStyle1.setAlignment(HSSFCellStyle.ALIGN_CENTER);
+ cellStyle1.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
+ //数字格式
+ for (int k = 0; k < (rows < SPLIT_COUNT ? rows : SPLIT_COUNT); k++) {
+ if (((i - 1) * SPLIT_COUNT + k) >= rows)
+ break;
+ HSSFRow row = sheet.createRow((short) (k + 1));
+ ArrayList rowList = (ArrayList) fieldData.get((i - 1) * SPLIT_COUNT + k);
+ for (int n = 0; n < rowList.size(); n++) {
+ HSSFCell cell = row.createCell( n);
+ if(rowList.get(n) != null){
+ cell.setCellStyle(cellStyle1);
+ cell.setCellValue((String) rowList.get(n).toString());
+ }else{
+ cell.setCellValue("");
+ }
+ }
+ }
+ //设置自动列宽
+ for (int j = 0; j < rows; j++) {
+ sheet.autoSizeColumn(j);
+ int width = sheet.getColumnWidth(j)*2;
+ if(width < 3000){
+ sheet.setColumnWidth(j,sheet.getColumnWidth(j)*17/7);
+ }
+ }
+ //冻结表头
+ sheet.createFreezePane( 0, 1, 0, 1 );
+ }
+ return workBook;
+ }
+
+ public static String fieldToProperty(String field) {
+ if (null == field) {
+ return "";
+ }
+ char[] chars = field.toCharArray();
+ StringBuffer sb = new StringBuffer();
+ for (int i = 0; i < chars.length; i++) {
+ char c = chars[i];
+ if (c == '_') {
+ int j = i + 1;
+ if (j < chars.length) {
+ sb.append(StringUtils.upperCase(CharUtils.toString(chars[j])));
+ i++;
+ }
+ } else {
+ sb.append(c);
+ }
+ }
+ return sb.toString();
+ }
+
+ public static String getFieldValueByFieldName(String fieldName, Object object) {
+ try {
+ Class> clazz = object.getClass();
+ for (; clazz != Object.class; clazz = clazz.getSuperclass()) {
+ Field[] field = clazz.getDeclaredFields();
+ for (Field f : field) {
+ if(fieldName.equals(f.getName())){
+ f.setAccessible(true);
+ if(f.get(object) != null){
+ return f.get(object).toString();
+ }else{
+ return "";
+ }
+ }
+ }
+ }
+ } catch (Exception e) {
+ e.printStackTrace();
+ return null;
+ }
+ return null;
+ }
+}
diff --git a/src/main/java/com/emr/util/ExportExcelUtil1.java b/src/main/java/com/emr/util/ExportExcelUtil1.java
new file mode 100644
index 0000000..4afa4ac
--- /dev/null
+++ b/src/main/java/com/emr/util/ExportExcelUtil1.java
@@ -0,0 +1,183 @@
+/**
+ * 系统数据导出Excel 生成器
+ * @version 1.0
+ */
+package com.emr.util;
+import org.apache.commons.lang3.CharUtils;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.poi.hssf.usermodel.*;
+import org.apache.poi.hssf.util.HSSFColor;
+
+import javax.servlet.http.HttpServletResponse;
+import java.io.OutputStream;
+import java.lang.reflect.Field;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.List;
+
+
+public class ExportExcelUtil1 {
+
+ private final int SPLIT_COUNT = 1000;
+
+ private static List fieldName = null;
+
+ private static List> fieldData = null;
+
+ private String fileName;
+
+ private HSSFWorkbook workBook = null;
+ public List getFieldName(String tableThNames){
+ String[] names = tableThNames.split(",");
+ List fieldName = new ArrayList<>();
+ if (names != null) {
+ for (int i = 0; i < names.length; i++) {
+ if (StringUtils.isNoneBlank(names[i])) {
+ fieldName.add(names[i]);
+ }
+ }
+ }
+ return fieldName;
+ }
+
+ public List> getFieldData(String fieldCns, Collection list){
+ List> fieldData = new ArrayList>();
+ String[] fieldList = fieldCns.split(",");
+ Object[] objects = list.toArray();
+ for (Object object : objects) {
+ List data = new ArrayList();
+ for (String english : fieldList) {
+ String field = fieldToProperty(english);
+ String value = getFieldValueByFieldName(field,object);
+ data.add(value);
+ }
+ fieldData.add(data);
+ }
+ return fieldData;
+ }
+ public void expordExcel(String tableThNames,String fieldCns,Collection list,String fileName,HttpServletResponse response) throws Exception {
+ this.fieldName = getFieldName(tableThNames);
+ this.fieldData = getFieldData(fieldCns,list);
+ this.fileName = fileName;
+ OutputStream os = response.getOutputStream();
+ response.reset();
+ response.setContentType("application/OCTET-STREAM;charset=gbk");
+ response.setHeader("pragma", "no-cache");
+ fileName = new String(fileName.getBytes("utf-8"), "iso-8859-1");
+ response.setHeader("Content-disposition", "attachment;filename=\"" + fileName + "\"");
+ response.setBufferSize(1024);
+ workBook = createWorkbook();
+ workBook.write(os);
+ os.close();
+ }
+ public HSSFWorkbook createWorkbook() {
+ workBook = new HSSFWorkbook();
+ int rows = fieldData.size();
+ int sheetNum = 0;
+
+ if (rows % SPLIT_COUNT == 0) {
+ sheetNum = rows / SPLIT_COUNT;
+ } else {
+ sheetNum = rows / SPLIT_COUNT + 1;
+ }
+ if(sheetNum == 0){
+ sheetNum = 1;
+ }
+ for (int i = 1; i <= sheetNum; i++) {
+ HSSFSheet sheet = workBook.createSheet("Sheet " + i);
+ HSSFRow headRow = sheet.createRow((short) 0);
+
+ HSSFCellStyle cellStyle = workBook.createCellStyle();
+ cellStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);
+ cellStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
+
+ HSSFFont font = workBook.createFont();
+ font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
+ font.setColor(HSSFColor.RED.index);
+ font.setFontHeightInPoints((short) 12);
+ cellStyle.setFont(font);
+
+ for (int j = 0; j < fieldName.size(); j++) {
+ HSSFCell cell = headRow.createCell( j);
+ sheet.setColumnWidth(j, 6000);
+ cell.setCellType(HSSFCell.CELL_TYPE_STRING);
+ if(fieldName.get(j) != null){
+ cell.setCellStyle(cellStyle);
+ cell.setCellValue((String) fieldName.get(j));
+ }else{
+ cell.setCellValue("-");
+ }
+ }
+ HSSFCellStyle cellStyle1 = workBook.createCellStyle();
+ cellStyle1.setAlignment(HSSFCellStyle.ALIGN_CENTER);
+ cellStyle1.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
+ for (int k = 0; k < (rows < SPLIT_COUNT ? rows : SPLIT_COUNT); k++) {
+ if (((i - 1) * SPLIT_COUNT + k) >= rows)
+ break;
+ HSSFRow row = sheet.createRow((short) (k + 1));
+ ArrayList rowList = (ArrayList) fieldData.get((i - 1) * SPLIT_COUNT + k);
+ for (int n = 0; n < rowList.size(); n++) {
+ HSSFCell cell = row.createCell( n);
+ if(rowList.get(n) != null){
+ cell.setCellStyle(cellStyle1);
+ cell.setCellValue((String) rowList.get(n).toString());
+ }else{
+ cell.setCellValue("");
+ }
+ }
+ }
+ //设置自动列宽
+ for (int j = 0; j < rows; j++) {
+ sheet.autoSizeColumn(j);
+ sheet.setColumnWidth(j,sheet.getColumnWidth(j)*17/10);
+ }
+ //冻结表头
+ sheet.createFreezePane( 0, 1, 0, 1 );
+ }
+ return workBook;
+ }
+
+ public static String fieldToProperty(String field) {
+ if (null == field) {
+ return "";
+ }
+ char[] chars = field.toCharArray();
+ StringBuffer sb = new StringBuffer();
+ for (int i = 0; i < chars.length; i++) {
+ char c = chars[i];
+ if (c == '_') {
+ int j = i + 1;
+ if (j < chars.length) {
+ sb.append(StringUtils.upperCase(CharUtils.toString(chars[j])));
+ i++;
+ }
+ } else {
+ sb.append(c);
+ }
+ }
+ return sb.toString();
+ }
+
+ public static String getFieldValueByFieldName(String fieldName, Object object) {
+ try {
+ Class> clazz = object.getClass();
+ for (; clazz != Object.class; clazz = clazz.getSuperclass()) {
+ Field[] field = clazz.getDeclaredFields();
+ for (Field f : field) {
+ if(fieldName.equals(f.getName())){
+ f.setAccessible(true);
+ if(f.get(object) != null){
+ return f.get(object).toString();
+ }else{
+ return "";
+ }
+ }
+ }
+ }
+ } catch (Exception e) {
+ e.printStackTrace();
+ return null;
+ }
+ return null;
+ }
+}
diff --git a/src/main/java/com/emr/util/HttpClientUtils.java b/src/main/java/com/emr/util/HttpClientUtils.java
new file mode 100644
index 0000000..8d44c1a
--- /dev/null
+++ b/src/main/java/com/emr/util/HttpClientUtils.java
@@ -0,0 +1,282 @@
+/**
+ * Copyright (C), 2015-2019
+ * Author: HJL
+ * Date: 2019/6/13 18:49
+ * Description:
+ */
+package com.emr.util;
+import com.alibaba.fastjson.JSONObject;
+import org.apache.http.HttpEntity;
+import org.apache.http.HttpStatus;
+import org.apache.http.NameValuePair;
+import org.apache.http.client.config.RequestConfig;
+import org.apache.http.client.entity.UrlEncodedFormEntity;
+import org.apache.http.client.methods.CloseableHttpResponse;
+import org.apache.http.client.methods.HttpGet;
+import org.apache.http.client.methods.HttpPost;
+import org.apache.http.client.utils.URIBuilder;
+import org.apache.http.entity.ContentType;
+import org.apache.http.entity.StringEntity;
+import org.apache.http.impl.client.CloseableHttpClient;
+import org.apache.http.impl.client.HttpClients;
+import org.apache.http.message.BasicNameValuePair;
+import org.apache.http.util.EntityUtils;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.io.IOException;
+import java.net.URI;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Map;
+
+/**
+ * HttpClient4.3工具类
+ *
+ * @author
+ */
+public class HttpClientUtils {
+ private static Logger logger = LoggerFactory.getLogger(HttpClientUtils.class); // 日志记录
+
+ private static RequestConfig requestConfig = null;
+
+ static {
+ // 设置请求和传输超时时间
+ requestConfig = RequestConfig.custom().setSocketTimeout(600000).setConnectTimeout(600000).build();
+ }
+
+ /**
+ * post请求传输json参数
+ *
+ * @param url url地址
+ * @param jsonParam 参数
+ * @return
+ */
+ public static JSONObject httpPost(String url, JSONObject jsonParam) {
+ // post请求返回结果
+ CloseableHttpClient httpClient = HttpClients.createDefault();
+ JSONObject jsonResult = null;
+ HttpPost httpPost = new HttpPost(url);
+ // 设置请求和传输超时时间
+ httpPost.setConfig(requestConfig);
+ try {
+ if (null != jsonParam) {
+ // 解决中文乱码问题
+ StringEntity entity = new StringEntity(jsonParam.toString(), "utf-8");
+ entity.setContentEncoding("UTF-8");
+ entity.setContentType("application/json");
+ httpPost.setEntity(entity);
+ }
+ CloseableHttpResponse result = httpClient.execute(httpPost);
+ // 请求发送成功,并得到响应
+ if (result.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
+ String str = "";
+ try {
+ // 读取服务器返回过来的json字符串数据
+ str = EntityUtils.toString(result.getEntity(), "utf-8");
+ // 把json字符串转换成json对象
+ jsonResult = JSONObject.parseObject(str);
+ } catch (Exception e) {
+ logger.error("post请求提交失败:" + url, e);
+ }
+ }
+ } catch (IOException e) {
+ logger.error("post请求提交失败:" + url, e);
+ } finally {
+ httpPost.releaseConnection();
+ }
+ return jsonResult;
+ }
+
+ /**
+ * post请求传输String参数 例如:name=Jack&sex=1&type=2
+ * Content-type:application/x-www-form-urlencoded
+ *
+ * @param url url地址
+ * @param strParam 参数
+ * @return
+ */
+ public static JSONObject httpPost(String url, String strParam) {
+ // post请求返回结果
+ CloseableHttpClient httpClient = HttpClients.createDefault();
+ JSONObject jsonResult = null;
+ HttpPost httpPost = new HttpPost(url);
+ httpPost.setConfig(requestConfig);
+ try {
+ if (null != strParam) {
+ // 解决中文乱码问题
+ StringEntity entity = new StringEntity(strParam, "utf-8");
+ entity.setContentEncoding("UTF-8");
+ entity.setContentType("application/x-www-form-urlencoded");
+ httpPost.setEntity(entity);
+ }
+ CloseableHttpResponse result = httpClient.execute(httpPost);
+ // 请求发送成功,并得到响应
+ if (result.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
+ String str = "";
+ try {
+ // 读取服务器返回过来的json字符串数据
+ str = EntityUtils.toString(result.getEntity(), "utf-8");
+ // 把json字符串转换成json对象
+ jsonResult = JSONObject.parseObject(str);
+ } catch (Exception e) {
+ logger.error("post请求提交失败:" + url, e);
+ }
+ }
+ } catch (IOException e) {
+ logger.error("post请求提交失败:" + url, e);
+ } finally {
+ httpPost.releaseConnection();
+ }
+ return jsonResult;
+ }
+
+ /**
+ * 发送get请求
+ *
+ * @param url 路径
+ * @return
+ */
+ public static JSONObject httpGet(String url) {
+ // get请求返回结果
+ JSONObject jsonResult = null;
+ CloseableHttpClient client = HttpClients.createDefault();
+ // 发送get请求
+ HttpGet request = new HttpGet(url);
+ request.setConfig(requestConfig);
+ try {
+ CloseableHttpResponse response = client.execute(request);
+
+ // 请求发送成功,并得到响应
+ if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
+ // 读取服务器返回过来的json字符串数据
+ HttpEntity entity = response.getEntity();
+ String strResult = EntityUtils.toString(entity, "utf-8");
+ // 把json字符串转换成json对象
+ jsonResult = JSONObject.parseObject(strResult);
+ } else {
+ logger.error("get请求提交失败:" + url);
+ }
+ } catch (IOException e) {
+ logger.error("get请求提交失败:" + url, e);
+ } finally {
+ request.releaseConnection();
+ }
+ return jsonResult;
+ }
+
+ public static String doGet(String url, Map param) {
+
+ // 创建Httpclient对象
+ CloseableHttpClient httpclient = HttpClients.createDefault();
+
+ String resultString = "";
+ CloseableHttpResponse response = null;
+ try {
+ // 创建uri
+ URIBuilder builder = new URIBuilder(url);
+ if (param != null) {
+ for (String key : param.keySet()) {
+ builder.addParameter(key, param.get(key));
+ }
+ }
+ URI uri = builder.build();
+
+ // 创建http GET请求
+ HttpGet httpGet = new HttpGet(uri);
+
+ // 执行请求
+ response = httpclient.execute(httpGet);
+ // 判断返回状态是否为200
+ if (response.getStatusLine().getStatusCode() == 200) {
+ resultString = EntityUtils.toString(response.getEntity(), "UTF-8");
+ }
+ } catch (Exception e) {
+ e.printStackTrace();
+ } finally {
+ try {
+ if (response != null) {
+ response.close();
+ }
+ httpclient.close();
+ } catch (IOException e) {
+ e.printStackTrace();
+ }
+ }
+ return resultString;
+ }
+
+ public static String doGet(String url) {
+ return doGet(url, null);
+ }
+
+ public static String doPost(String url, Map